1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-09-28 11:27:38 +00:00
bobbylisp/blspc/example/s.blsp

6 lines
112 B
Plaintext

(fun factorial (x)
(if (<= x 1)
1
(* x (factorial (- x 1)))))
(do
(print (factorial 7)))