prog8/examples/test.p8

20 lines
318 B
Plaintext
Raw Normal View History

%import textio
%zeropage basicsafe
%option no_sysinit
main {
sub start() {
2024-03-16 16:47:40 +01:00
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)
}
2024-03-01 19:45:16 +01:00
}