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: e09c3043850857654119662e07a90c27ceab6cbf (
plain
)
1
2
(bind factorial (lambda (n) (if (= n 0) 1 (* n (factorial (- n 1))))))