!752 p { makeBot("Look Up Standard Function Bot."); } static S answer(S s) { new Matches m; if (match("look up *", s, m) || match("lookup *", s, m)) { S fname = m.unq(0); Map map = parseStdFunctionsList(loadSnippet("#761")); S id = map.get(fname); if (id == null) id = lookupIgnoreCase(map, fname); if (id != null) ret "tinybrain.de/" + parseSnippetID(id); ret "function not found"; } null; }