Initial commit - fix problems & refactor code
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
(def fact (dambda (n) (
|
||||
if (_<_ n 2) 1
|
||||
(_*_ n (fact (_-_ n 1)))
|
||||
)))
|
||||
|
||||
Reference in New Issue
Block a user