!7 cmodule IWantYouToBePrelude > DynPrintLog { // the spaces sS objectiveSpace = 'objective, computerySpace = 'computery, userySpace = 'usery; transient WordTokRule rule_iWantYouToBe = wordTokReplacerRule( "I want you to be my assistant", "assistant", "I want that {you are my assistant}"); transient MultiMap rulesForSpace = litmultimap( userySpace, ll(rule_iWantYouToBe) ); Set rewriteInSpace(S space, S input) { Set out = linkedCISet(); ret out; } start-thread { S input = "I want you to be my mother"; Set outputs = rewriteInSpace(userySpace, input); pnl(outputs); printDone(); } }