Files
mini/game.lua
JailDoctor 1f5acd2bfa [NEW] extended palette functions
[DEL] old palette functions
[MODIF] mouse function names
[MODIF] map function params now are ints
[NEW] ascii function
[NEW] strlen function
2022-09-11 22:50:44 +02:00

13 lines
154 B
Lua

x=0
function _init()
text="HOLA MINI"
end
function _update()
cls(20)
print(text,x,60)
x=x+1
if x>160 then x=-strlen(text)*4 end
end