mirror of
https://github.com/irmen/prog8.git
synced 2024-11-20 03:32:05 +00:00
17 lines
278 B
Lua
17 lines
278 B
Lua
%import c64utils
|
|
|
|
~ main {
|
|
|
|
sub start() {
|
|
|
|
str question = "how are you?\n"
|
|
|
|
; use iteration to write text
|
|
for ubyte char in question { ; @todo fix iteration
|
|
;vm_write_char(char)
|
|
c64.CHROUT(char)
|
|
}
|
|
|
|
}
|
|
}
|