sclass SimpleMechLists extends VirtualMechLists { SS lists = syncCIMap(); bool verbose; S mL_raw(S listName) { if (verbose) print("List requested: " + listName); ret lists.get(listName); } void append(S listName, S text) { if (verbose) print("Appending to " + listName); lists.put(listName, appendNewLineIfNempty(lists.get(listName)) + text); } void setText(S listName, S text) { if (verbose) print("Replacing: " + listName); lists.put(listName, text); } }