2020-09-20 21:49:36 +00:00
|
|
|
%import textio
|
2020-09-27 11:31:46 +00:00
|
|
|
%import syslib
|
2020-09-27 20:05:44 +00:00
|
|
|
%zeropage basicsafe
|
2020-09-05 00:05:28 +00:00
|
|
|
|
2020-08-27 17:47:50 +00:00
|
|
|
|
2020-09-24 17:26:07 +00:00
|
|
|
main {
|
2020-09-28 00:23:36 +00:00
|
|
|
|
|
|
|
str[] names = ["aap", "noot", "mies", "vuur"]
|
|
|
|
uword[] names3 = ["aap", "noot", "mies", "vuur"]
|
|
|
|
ubyte[] values = [11,22,33,44]
|
|
|
|
|
2020-09-27 11:31:46 +00:00
|
|
|
sub start() {
|
2020-09-28 00:23:36 +00:00
|
|
|
uword s
|
|
|
|
for s in names {
|
|
|
|
txt.print(s)
|
|
|
|
txt.chrout('\n')
|
|
|
|
}
|
|
|
|
txt.chrout('\n')
|
|
|
|
|
|
|
|
txt.print(names[2])
|
|
|
|
txt.chrout('\n')
|
|
|
|
txt.print(names[3])
|
|
|
|
txt.chrout('\n')
|
|
|
|
|
|
|
|
repeat {
|
|
|
|
txt.print(names3[rnd()&3]) ; TODO doesn't show correct names? only shows 'aap' and 'noot' works fine if idx in separate var
|
|
|
|
txt.chrout(' ')
|
|
|
|
}
|
2020-09-16 21:04:18 +00:00
|
|
|
}
|
2020-09-27 18:23:42 +00:00
|
|
|
|
2020-08-27 17:47:50 +00:00
|
|
|
}
|