prog8/examples/test.p8
2024-03-02 14:00:12 +01:00

31 lines
535 B
Lua

%import textio
%option no_sysinit
%zeropage basicsafe
main {
sub start() {
ubyte[] flakes = [1,2,3]
ubyte @shared idx = 2
if flakes[idx]==239 {
txt.print("yes")
} else {
txt.print("nope")
}
ubyte @shared xx = 16
ubyte @shared yy = 20
txt.print_ub(xx>79 or yy > 49)
; if xx>79 or yy > 49 {
; if xx>79 or yy > 49 {
; txt.print("no\n")
; }
; else {
; txt.print("yes\n")
; }
}
}