!752 p { S snippetID = "#1002079"; startBot("Snippet MD5 Bot", "#1002079"); S answer = sendToLocalBot("Snippet MD5 Bot", "what is the md5 of snippet " + snippetID); new Matches m; assertTrue(match("The md5 of snippet * is *", answer, m)); S md5 = m.unq(1); print("md5 from bot: " + md5); S text = loadSnippet(snippetID); S md5_2 = md5(text); print("md5 from actual text: " + md5_2); assertEquals(md5, md5_2); print("all clear!"); }