holey-bytes/hblang/examples/variables.hb

7 lines
65 B
Plaintext

main := ||: int {
a := 1;
b := 2;
a = a + 1;
return a - b;
}