!7 cmodule UserSelfInfoBot > DynTalkBot { start { myName = "UserSelfInfoBot"; } S processSimplifiedLine(S s, O... _) { if "what's your name" ret myName; if (containsWord(s, ai_backReferencingWords()) ret null with print("Contains back-referencing word"); null; } }