Ejemplo n.º 1
0
        public static void Main(string[] args)
        {
            // Each code module to run implenets the ICodeRunModule interface.
            // Built as a .NET Core class library dll and refernced by its
            // namespace. Call CodeRunModule using CodeRunFramework.run(CodeRunModule)

            var rm = new CodeRunModule();

            CodeRun.Run(rm);
        }
Ejemplo n.º 2
0
 static void Main(string[] args)
 {
     //CodeRun.Run(new CodeRunTry());
     CodeRun.Run(new CodeRunExample());
 }
Ejemplo n.º 3
0
        static void Main(string[] args)
        {
            var wd = new WidgetCodeRun();

            CodeRun.Run(wd);
        }