#include <fstream>
using fsc::dout;
int main() {
dout << "Normal printing." << std::endl;
dout, "And ", 4, " more words.", std::endl;
(dout << '0', 0) << "0", std::endl;
bool write_file = true;
if(write_file) {
std::ofstream fs("debug.log");
dout = std::move(fs);
dout.set_color();
}
dout, "Writing to file from any C++ scope.", std::endl;
dout = std::cerr;
dout.set_color("1;34");
dout("highlighted text");
dout("label", "text");
dout("label", "text", " separator ");
dout.set_precision(13);
dout, 0., std::endl;
dout.stack(100, false, 0);
return 0;
}