// Fortune Teller Bot // Ask it a yes or no question and it will tell you your fortune using System; namespace ChatBot { class FortuneTellerBot : BasicBot { public override string HandleMessage(string message, string user) { string answer = User.Input(); return "The great fortune teller bot's response is: " + answer; } } }