mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-15 08:47:35 +02:00
Formatting
This commit is contained in:
parent
8f6d5db797
commit
3e92f67924
1 changed files with 6 additions and 1 deletions
|
@ -1 +1,6 @@
|
|||
(define (fac n) (if (= n 0) 1 (* n (fac (- n 1)))))
|
||||
(define (fac n)
|
||||
(if (= n 0)
|
||||
1
|
||||
(* n (fac (- n 1)))))
|
||||
|
||||
(fac 10)
|
||||
|
|
Loading…
Add table
Reference in a new issue