prog8/examples/test.p8

18 lines
253 B
Lua

%import textio
%zeropage basicsafe
main {
sub show_bug(byte a, byte b) {
if (a >= 0) == (b > 0) {
txt.print("bug!")
} else {
txt.print("no bug.")
}
txt.nl()
}
sub start() {
show_bug(-1, 4)
}
}