// Powerful Regex 1 Bot // Figures out if the user says hi, hello, or howdy using System; namespace ChatBot { class PowerfulRegex1Bot : BasicBot { public override string HandleMessage(string message, string user) { if (User.RegexMatch("Hi|Hello|Howdy", message)) { return "Success!"; } else { return "Failure."; } } } }