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

12 lines
132 B
Plaintext
Raw Normal View History

2022-12-13 10:02:41 -06:00
fun succ x = do
let one = 1
let y = x + one
in y
2022-12-13 10:02:41 -06:00
end
fun double x = x * 2
fun main = do
2022-12-20 08:21:21 -06:00
x |> \a -> println(a)
end