svoid printLinesWithGrowingIndent(Iterable lines) { S indent = ""; for (S s : unnull(lines)) print((indent += " ") + s); }