prog8/examples/test.p8

16 lines
237 B
Plaintext
Raw Normal View History

%import textio
%zeropage basicsafe
%option no_sysinit
main {
sub start() {
str name = "irmen"
ubyte @shared cc='m'
2024-03-12 22:27:15 +00:00
cx16.r0=9999
2024-03-12 22:27:15 +00:00
if cx16.r0<10000 and 'q' in name
txt.print("yes")
2024-03-01 18:45:16 +00:00
}
}