prog8/examples/test.p8

17 lines
220 B
Plaintext
Raw Normal View History

%import textio
%zeropage basicsafe
2021-10-30 15:15:11 +02:00
main {
sub start() {
ubyte @shared xx
ubyte @shared yy
yy = xx==7
if xx==99 {
xx++
yy++
}
2021-12-29 18:00:25 +01:00
txt.nl()
}
}