sS asciiSideBySideWithBars(LS texts) { if (empty(texts)) ret asciiSideBySide(texts); int rows = maxLineCount(texts); L out = ll(repLine(rows, "| ")); for i over texts: { if (i != 0) out.add(repLine(rows, " | ")); out.add(texts.get(i)); } out.add(repLine(rows, " |")); ret asciiSideBySide(out); } sS asciiSideBySideWithBars(S... texts) { ret asciiSideBySideWithBars(asList(texts)); }