namespace MultiversalDiplomacy.Script; /// /// A script handler for the interactive repl. /// public class ReplScriptHandler : IScriptHandler { public string Prompt => "5dp> "; public IScriptHandler? HandleInput(string input) { Console.WriteLine($"[{input}]"); return this; } }