This is a request to add support for default arguments. Given the following function definition: `def someFunction(a, b = false)` ...and calling it as `someFunction(10)` with argument `b` omitted would be the same as calling `someFunction(10, false)`
This is a request to add support for default arguments.
Given the following function definition:
def someFunction(a, b = false)...and calling it as
someFunction(10)with argumentbomitted would be the same as callingsomeFunction(10, false)