Display indented text
static void indent(String text, {int spaces = 2}) { final prefix = ' ' * spaces; stdout.writeln(prefix + text); }