index
:
no_excess.git
master
My first programming language.
Preston Pan
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
doc
/
main.nxs
blob: e0839b5975cae5035b2492bd64af8542e83d21f9 (
plain
)
1
2
3
4
(bind factorial (lambda (n) (if (= n 0) 1 (* n (factorial (- n 1)))))) (factorial 3)