static S dropFirstLine(S text) {
  if (text == null) null;
  int i = text.indexOf('\n');
  ret i >= 0 ? text.substring(i+1) : "";
}