!752 p { makeBot("Get Text Bot."); askMyself(loadSnippet("#1001791")); } static S answer(S s) { new Matches m; if (matchStart("get", s, m)) { //print("Get! rest: " + quote(m.rest())); ret get(m.rest()); } ret null; } static S get(S s) { new Matches m; if (match3("transpilation of *", s, m)) { S snippetID = m.unq(0); ret dropFirstLine(getServerTranspiled(snippetID)); } if (matchStart("line * of", s, m)) { S text = get(m.rest()); int lineNr = parseInt(m.unq(0)); ret getLine(text, lineNr); } ret null; } !include #1000619 // get