Last active
October 15, 2018 17:19
-
-
Save toumorokoshi/ca24024d90ac0d9aecee534420aa1d01 to your computer and use it in GitHub Desktop.
test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defn fib [i] | |
match i { | |
1: (return 1), | |
0: (return 0), | |
} | |
return (+ (fib (- i 1)) (fib (- i 2))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment