static int getIndent(S s) { int n = Integer.MAX_VALUE; for (S l : toLines(s)) n = min(n, getIndentOfLine(l)); ret n; }