2024-10-13 17:37:25 +00:00
|
|
|
%import textio
|
|
|
|
%option no_sysinit
|
|
|
|
%zeropage basicsafe
|
|
|
|
|
2024-10-07 17:17:37 +00:00
|
|
|
main {
|
2024-10-13 17:37:25 +00:00
|
|
|
|
2024-10-15 19:12:22 +00:00
|
|
|
bool[] barray = [true, false, true, false]
|
|
|
|
bool value1
|
|
|
|
bool value2 = barray[cx16.r0L]
|
|
|
|
bool value3 = true
|
|
|
|
bool value4 = false
|
|
|
|
|
2024-10-13 02:20:57 +00:00
|
|
|
sub start() {
|
2024-10-15 19:12:22 +00:00
|
|
|
txt.print_bool(value1)
|
|
|
|
txt.spc()
|
|
|
|
txt.print_bool(value2)
|
|
|
|
txt.spc()
|
|
|
|
txt.print_bool(value3)
|
2024-10-13 17:37:25 +00:00
|
|
|
txt.nl()
|
2024-10-15 19:12:22 +00:00
|
|
|
txt.print_bool(value4)
|
2024-10-13 17:37:25 +00:00
|
|
|
txt.nl()
|
2024-10-13 02:20:57 +00:00
|
|
|
}
|
2024-09-14 21:17:26 +00:00
|
|
|
}
|