Ñ-- title: Hello TIC-80 -- author: emulators.org -- desc: Animated demo for emulators.org -- license:MIT -- script: lua t=0 function TIC() cls(0) -- palette bar (all 16 colours) for i=0,15 do rect(i*15,0,15,8,i) end t=t+1 -- orbiting dots for i=0,47 do local a=(i+t)/8 local x=120+math.sin(a)*(40+i) local y=68+math.cos(a*0.9)*(20+i//2) circ(x,y,2,(i+t//4)%15+1) end print("TIC-80",86,54,12,false,2) print("emulators.org",82,124,11,false,1) end