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

22 lines
217 B
Plaintext
Raw Normal View History

2022-12-14 00:00:16 -06:00
// start
fun foo x = do
69 // unused
print("Hi")
x
end
/* block comment
fun invalid =
*/
2022-12-13 23:50:02 -06:00
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
2022-12-14 00:00:16 -06:00
// end