|
function_with_named_parameters(1, 10.0);
|
|
function_with_named_parameters(7, _bar = 3.14);
|
|
function_with_named_parameters( _bar = 0.0, _foo = 42);
|
|
function_with_named_parameters( _bar = 2.5, _bonk= "Hello", _foo = 9);
|
|
function_with_named_parameters(9, 2.5, true, "Hello");
|