Hello
My first post!
Parameter
Names
Don't you just hate it when you're reading code that
looks like this and no idea what those parameters
are ?
func(true,
false);
This is
the function declaration - but it's a pain to go and
find that:
void
func(bool debug, bool log);
With
this proposal, allowing inclusion of the parameter
names makes it clear:
func(debug=true,
log=false);
Well, that's not much of a "proposal" at this stage.
;)
Think about what your proposal should do with
void func(int debug, int log);
int main() {
bool debug = false;
func(debug=true, log=false);
}