!7 cmodule GListMaker > DynPrintLog { LS list = synchroList(); bool active = true; S answer(S s) { if (!active) null; if "done" { dm_call(dm_gazelle_modulesManager(), 'removeModule, this); ret "Okidoki! Had " + n2(list, "entry", "entries") + " in the list."; } null; } // API void add(S s) { list.add(s); } void remove(S s) { list.remove(s); } bool contains(S s) { ret cic(list, s); } }