Files
hakorune/apps/tests/dev_sugar/compound_and_inc.nyash

13 lines
116 B
Plaintext

static box Main {
main(args) {
@i = 0
i++
i += 2
i *= 3
i -= 1
i /= 2
print(i)
}
}