-
Notifications
You must be signed in to change notification settings - Fork 48
Open
Description
I would find it useful if typedlua allowed defaults for arguments; this often is useful for being able to specify a more restrictive type, e.g. "string" instead of "string?"
function f(x:string="something"): string
return x..x
end
instead of
function f(x: string?): string
if x==nil then x = "something" end
return x..x
end
Veltas
Metadata
Metadata
Assignees
Labels
No labels