mirror of
https://github.com/irmen/prog8.git
synced 2025-02-16 22:30:46 +00:00
28 lines
588 B
Lua
28 lines
588 B
Lua
%import gfx2
|
|
|
|
main {
|
|
sub start() {
|
|
gfx2.screen_mode(2)
|
|
|
|
gfx2.safe_circle(120, 140, 200, 1)
|
|
sys.wait(30)
|
|
gfx2.safe_circle(520, 140, 200, 1)
|
|
sys.wait(30)
|
|
gfx2.safe_circle(120, 340, 200, 1)
|
|
sys.wait(30)
|
|
gfx2.safe_circle(520, 340, 200, 1)
|
|
sys.wait(30)
|
|
|
|
gfx2.safe_disc(120, 140, 200, 1)
|
|
sys.wait(30)
|
|
gfx2.safe_disc(520, 140, 200, 1)
|
|
sys.wait(30)
|
|
gfx2.safe_disc(120, 340, 200, 1)
|
|
sys.wait(30)
|
|
gfx2.safe_disc(520, 340, 200, 1)
|
|
|
|
repeat {
|
|
}
|
|
}
|
|
}
|