// Concatenation Example 1 Bot // A simple example of string concatenation using System; namespace ChatBot { class ConcatenationExample1Bot : BasicBot { public override string HandleMessage(string message, string user) { return "Hello World" + " again"; } } }