14 lines
181 B
Lua
14 lines
181 B
Lua
x=0
|
|
|
|
function _init()
|
|
text="HOLA MINI"
|
|
playchirp("o4w4cdw5cd")
|
|
end
|
|
|
|
function _update()
|
|
cls(20)
|
|
prnt(text,x,60)
|
|
x=x+1
|
|
if x>160 then x=-strlen(text)*4 end
|
|
end
|