I have written the following.
n3 = 116
s3 = tostring("\\" .. n3)
graphicsPrintln(s3) -- Result: \116
s3 = tostring("s3")
graphicsPrintln(s3) -- Result: s3
s3 = tostring("\116")
graphicsPrintln(s3) -- Result: t
I would like to have the result from the last statement, but without to fill in the decimals, but with a solution to use a variable. So this:
s3 = tostring(something with n3) -- Result: t
Is this possible?
tostring problems
Moderators: Shine, Insert_witty_name