static S autoUnindent(S s) { int n = getIndent(s); if (n == 0) ret s; L l = toLines(s); for (int i = 0; i < l(l); i++) l.set(i, substring(l.get(i), n)); ret fromLines(l); }