Posted 14 April 2013 - 02:21 AM
Hi,
Is it possible to return multiple variables from a function?
Is it possible to return multiple variables from a function?
return value1, value2, value3
local function hello()
return "hello","world"
end
local a,b = hello()
print(B)/>