Last active
October 15, 2018 17:22
-
-
Save toumorokoshi/6ea506cb807f5cc2968d331f02e1c3a0 to your computer and use it in GitHub Desktop.
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