home ~ projects ~ socials

Convert An Integer To A String In Lua

local num = 1
local txt = tostring(num)
print(txt)
-- end of line --

References