using System; namespace Dungeoneer { public sealed class Program { public delegate void Command(IList args); public static Dictionary ReplCommands = new Dictionary { { "roll", (Command)Dungeoneer.Command.Roll } }; public static void Main() { Console.WriteLine("Starting"); Scripting.Run("repl.py"); } } }