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