mirror of
https://github.com/azur1s/bobbylisp.git
synced 2024-10-16 02:37:40 -05:00
9 lines
119 B
Plaintext
9 lines
119 B
Plaintext
fun foo x = x
|
|
|
|
fun fac n = if n == 0 then 1 else n * fac(n - 1)
|
|
|
|
fun main = do
|
|
print(foo(1))
|
|
print(fac(5))
|
|
end
|