1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-10-16 02:37:40 -05:00
bobbylisp/examples/sim.sial

9 lines
119 B
Plaintext
Raw Normal View History

2022-12-13 23:50:02 -06:00
fun foo x = x
fun fac n = if n == 0 then 1 else n * fac(n - 1)
2022-12-13 10:02:41 -06:00
fun main = do
2022-12-13 23:50:02 -06:00
print(foo(1))
print(fac(5))
2022-12-13 10:55:52 -06:00
end