prog8/examples/test.p8

36 lines
578 B
Plaintext
Raw Normal View History

2023-03-22 21:00:21 +00:00
%import textio
%zeropage basicsafe
main {
sub start() {
2023-05-07 13:15:58 +00:00
ubyte[10] envelope_attacks = 99
2023-05-07 21:49:02 +00:00
ubyte @shared xx = 4
ubyte yy
; 110
xx = 4
yy = 10
xx = xx <= yy
if xx
txt.chrout('1')
else
txt.chrout('0')
xx = 4
yy = 4
xx = xx <= yy
if xx
txt.chrout('1')
else
txt.chrout('0')
xx = 4
yy = 2
xx = xx <= yy
if xx
txt.chrout('1')
else
txt.chrout('0')
2023-03-18 23:24:05 +00:00
}
}