sbool listToCL_debug; static L listToCL(L l) { new L out; for (S line : l) { S c = englishToConceptLanguage(line); if (listToCL_debug) print(line + " => " + c); out.add(c); } ret out; }