// Simon Says Bot // If the user says Simon says, then the computer will do it using System; namespace ChatBot { class SimonSaysBot : BasicBot { public override string HandleMessage(string message, string user) { if (User.RegexMatch("Simon Says", message)) { return "I did it!"; } else { return "I will not do it, Simon-impersonator!"; } } } }