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