This commit is contained in:
2026-08-24 08:25:07 -06:00
parent 540a44e148
commit f2c5d2f3ee
10 changed files with 134 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
(define (factorial n)
(if (zero? n)
1
(* n (factorial (- n 1)))))