Skip to content

Instantly share code, notes, and snippets.

@toumorokoshi
Last active October 15, 2018 17:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toumorokoshi/ca24024d90ac0d9aecee534420aa1d01 to your computer and use it in GitHub Desktop.
Save toumorokoshi/ca24024d90ac0d9aecee534420aa1d01 to your computer and use it in GitHub Desktop.
test
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