Initial commit - fix problems & refactor code

This commit is contained in:
2025-12-22 19:10:46 +03:00
commit ff36917cb5
39 changed files with 1499 additions and 0 deletions
+6
View File
@@ -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)))