prog8/examples/test.p8
2024-03-16 18:48:06 +01:00

20 lines
318 B
Lua

%import textio
%zeropage basicsafe
%option no_sysinit
main {
sub start() {
txt.print("hello, world!")
ubyte col = txt.get_column()
ubyte row = txt.get_row()
txt.row(10)
txt.print("row 10")
txt.column(2)
txt.print("col 2")
txt.plot(0, 18)
}
}