mirror of
https://github.com/irmen/prog8.git
synced 2024-12-30 11:30:15 +00:00
16 lines
327 B
Lua
16 lines
327 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
uword[] array = [1000, 2000, 9000, 8000, 5000]
|
|
sub start() {
|
|
txt.print_bool(1000 in array)
|
|
txt.spc()
|
|
txt.print_bool(9000 in array)
|
|
txt.spc()
|
|
txt.print_bool(5000 in array)
|
|
txt.spc()
|
|
txt.print_bool(9001 in array)
|
|
}
|
|
}
|