static S yesno(bool b) { ret yesno((Bool) b); } static S yesno(Bool b) { ret eq(b, true) ? "Yes. " : eq(b, false) ? "No. " : "Unknown. "; }