Prints boolean
import mir.appender: scopedBuffer; auto w = scopedBuffer!char; w.print(true); assert(w.data == `true`); w.reset; w.print(false); assert(w.data == `false`);
See Implementation
Prints boolean