##############################
void foo ( bool closeButton = true, int width = 600 ) {
writeln( closeButton, ", ", width );
}
void main () {
foo( closeButton: false );
}
##############################
With output:
false, 600
Gosh, that'd sure be swell. (Either that or find a way to sanely
allow non-static struct initializers, at least for rvalue
arguments.)
-- Chris NS
