mirror of
https://github.com/irmen/prog8.git
synced 2024-11-25 04:31:20 +00:00
19 lines
298 B
Lua
19 lines
298 B
Lua
%import textio
|
|
%import gfx_hires4
|
|
%option no_sysinit
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
gfx_hires4.graphics_mode()
|
|
gfx_hires4.circle(300, 250, 200, 3)
|
|
gfx_hires4.rect(320, 10, 20, 200, 3)
|
|
gfx_hires4.fill(310, 310, 2)
|
|
|
|
repeat {
|
|
}
|
|
}
|
|
}
|
|
|