Answers for "default value lua"

Lua
0

default value lua

function myfunction(a,b,c)
    b = b or 7
    c = c or 5
    print (a,b,c)
end
Posted by: Guest on October-05-2021

Browse Popular Code Answers by Language