include "sw.inc"
Window 640,480,1
p1 = LoadBmp "bmp/earth.bmp",1
single a
while Key(27)=0
Cls RGB(200,200,248)
DrawBmp p1,100,100,228,228,0
DrawBmp p1,100,300,200,200,0
DrawBmp p1,300,340,128,128,0
DrawBmp p1,428,372, 64, 64,0
RotateBmp p1,320,100,a
SetText 220,16,"Some Blue Planets",RGB(0,0,250)
Sync()
a +=9
if a >360 then a= -360
wend
Quit
X