aboutsummaryrefslogtreecommitdiff
path: root/test.hgn
blob: 2aec1a8381e268ca2b640464ce849e6808900b99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
let x = 10
let y = 0
print(x > y)
while y < 3 {
    x = x + x
    y = y + 1
}
if x {
    # let x = read_int(0)
    # print(18446744073709551615)
    x = x + x
} else {
    x = 69
}
print(x)