// Concatenation Example 3 Bot // A simple example of string concatenation using System; namespace ChatBot { class ConcatenationExample3Bot : BasicBot { public override string HandleMessage(string message, string user) { string fluffyStuff = "snow"; string compoundWord = fluffyStuff + "man"; return compoundWord; } } }