prog8/examples/test.p8

16 lines
261 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 {
sub start() {
str message = "a"
txt.print(message)
txt.nl()
message[0] = '@'
txt.print(message)
txt.nl()
}
2021-04-01 20:10:04 +00:00
}