sbool allLinesAreUnindented(S text) {
  for (S s : lines(text))
    if (startsWithSpace(s))
      false;
  true;
}