mirror of
https://github.com/anoma/juvix.git
synced 2024-12-04 06:23:13 +03:00
9 lines
118 B
Plaintext
9 lines
118 B
Plaintext
-- let
|
|
|
|
let x := 1 in
|
|
let x := x + let x := 2 in x in
|
|
let x := x * x in
|
|
let y := x + 2 in
|
|
let z := x + y in
|
|
x + y + z
|