!7 sclass SnippetUpdates extends DynPrintLog { S msg; bool sign; transient StefansOS_ConnectToServer connector; start { ownResource(connector = new StefansOS_ConnectToServer); connector.onLine = voidfunc(S line) { new Matches m; if (startsWith(line, "snippetUpdates:", m)) { S msg = unquote(m.rest()); printWithIndent("<< ", msg); } }; connector.startWithSubs("snippetUpdates"); } }