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
+2
View File
@@ -0,0 +1,2 @@
(defun selfactorial (self, n) (* n (if (< n 3) 1 (f f (- n 1)))))
(defun factorial (n) (selfactorial selfactorial n))