index
:
tunk.git
main
A small functional language interpreter
Git Server
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
samples
/
sample1.code
blob: d93f18b626875f9d84b5b3fc6920bb186a8ef677 (
plain
)
1
2
3
4
5
factorial = int.eq? n 1 1 int.multiply n (factorial (int.decrement n)); factorial 10;