// Last Message Bouncer Bot // Returns the message the user said last time using System; namespace ChatBot { class LastMessageBouncerBot : BasicBot { public override string HandleMessage(string message, string user) { string messageLastTime = "Last time you said: " + state; state = message; return messageLastTime; } } }