I looked at the writef()
documentation for any bool
specifier and there didn't seem to be any.
In a Chapel program I have: ...
config const verify = false;
/* that works but I want to use writef() to also print a bunch of other stuff*/
writeln("verify = " + verify);
writef("verify = %<what-specifier-goes-here>\n", verify);
This last statement works ok.
// I guess I could do:
writef( "verify = %s\n",if verify then "true" else "false");