Fantasy computer for making, playing and sharing tiny games. · By Nesbox
if i do:
i=1
function TIC()
cls()
print(i,10,10)
end
no number will appear, or at least on my program that is not exactly like this one.
try this
print(""..i,10,10)
thank you both so much. i had used it without the tostring or the "".. in previous versions. glad to know about this change.
You can also use the "tostring" function, like this:
print( tostring( i), 10, 10)