prog8/examples/test.p8
2021-12-30 01:34:10 +01:00

17 lines
220 B
Lua

%import textio
%zeropage basicsafe
main {
sub start() {
ubyte @shared xx
ubyte @shared yy
yy = xx==7
if xx==99 {
xx++
yy++
}
txt.nl()
}
}