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
+5
View File
@@ -0,0 +1,5 @@
(def fact (dambda (n) (
if (_<_ n 2) 1
(_*_ n (fact (_-_ n 1)))
)))