prog8/examples/test.p8
2023-03-25 00:08:21 +01:00

10 lines
119 B
Lua

main {
sub start() {
ubyte x
ubyte y
if x<y
x++
;x = x+(x<y)+1
}
}