prog8/examples/test.p8
2022-02-25 19:16:37 +01:00

12 lines
129 B
Lua

%import textio
%address $2000
main {
sub start() {
txt.print("Hello!\nWorld\n")
repeat {
}
}
}