fix: my bad interpreter

This commit is contained in:
Eatswap 2022-12-13 15:49:26 +08:00
parent 3547e58f2c
commit cec9e7945c
Signed by: Eatswap
GPG Key ID: BE661106A1F3FA0B
1 changed files with 5 additions and 1 deletions

View File

@ -32,7 +32,11 @@
) )
) )
(fibonacci 15) ; returns 987 ; Time complexity very very very high!!!
; This is a recursive function.
; O(2^n) time complexity.
; Since this interpreter is not well optimized, it will take a long time to run this function.
(print (fibonacci 8)) ; returns 34
; This is a comment. ; This is a comment.
; This is another comment. ; This is another comment.