mirror of
https://github.com/azur1s/bobbylisp.git
synced 2024-10-16 02:37:40 -05:00
7 lines
139 B
Plaintext
7 lines
139 B
Plaintext
\x -> x // => x : t0
|
|
\x -> x + 1 // => x : Int
|
|
(\x -> x)(1) // => x : Int
|
|
|
|
let a : num = 1,
|
|
b : num = a + 1,
|
|
c : num = b + 1; |