Files
mini/data/game.lua
Raimon Zamora b282bd05d5 - File operations work on "data/" folder or ".jrf" file
- [NEW] fopenres() works on .jrf resources, fopen on normal files
2022-10-11 17:58:03 +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