lua function return code example
Example 1: lua printing
print("Your Text here")
Example 2: print script lua
print("hi")
end
Example 3: how to print in lua
print("text"..v) -- "" for strings, '..' to concencate, type name of variable to print variable
Example 4: function return lua
function factorial(x)
if x == 1 then
return 1
end
return x * factorial(x-1)
end