Standardwert Lua
function myfunction(a,b,c)
b = b or 7
c = c or 5
print (a,b,c)
end
DoubleTroublePy
function myfunction(a,b,c)
b = b or 7
c = c or 5
print (a,b,c)
end