prog8/examples/test.p8

13 lines
170 B
Lua

main {
sub start() {
uword xx = 10
if xx+99 == 1.23456 {
xx++
}
if xx+99 == 1234567 {
xx++
}
}
}