mirror of
https://github.com/azur1s/bobbylisp.git
synced 2024-10-16 02:37:40 -05:00
22 lines
217 B
Plaintext
22 lines
217 B
Plaintext
// start
|
|
|
|
fun foo x = do
|
|
69 // unused
|
|
print("Hi")
|
|
x
|
|
end
|
|
|
|
/* block comment
|
|
|
|
fun invalid =
|
|
|
|
*/
|
|
|
|
fun fac n = if n == 0 then 1 else n * fac(n - 1)
|
|
|
|
fun main = do
|
|
print(foo(1))
|
|
print(fac(5))
|
|
end
|
|
|
|
// end |