prog8/examples/test.p8

29 lines
503 B
Plaintext
Raw Normal View History

2023-05-16 21:10:33 +00:00
%import textio
main {
2023-05-07 23:03:54 +00:00
sub start() {
str name1 = "name1"
str name2 = "name2"
2023-05-31 18:09:03 +00:00
uword[] names = [name1, name2, "name3"]
cx16.r0++
2023-05-31 18:09:03 +00:00
uword ww
for ww in names {
txt.print(ww)
txt.spc()
}
txt.nl()
names = [1111,2222,3333]
2023-05-31 18:09:03 +00:00
for ww in names {
txt.print_uw(ww)
txt.spc()
}
txt.nl()
txt.print("end.")
%asm {{
lda #$3e
}}
2023-03-18 23:24:05 +00:00
}
}