prog8/examples/test.p8

24 lines
398 B
Plaintext
Raw Normal View History

2021-04-30 20:30:21 +00:00
%import textio
%zeropage basicsafe
%option no_sysinit
2021-04-08 00:13:02 +00:00
main {
byte[] xs1 = "foo1" ; <<<<<<<<<<<<
str xs2 = "foo2" ; <<<<<<<<<<<<
sub start() {
txt.print(xs1)
stringopt()
}
sub stringopt() {
str message = "a"
txt.print(message)
txt.nl()
message[0] = '@'
txt.print(message)
txt.nl()
}
2021-04-01 20:10:04 +00:00
}