mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
21 lines
527 B
C#
21 lines
527 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Cosmos.Compiler.Tests.Interfaces.Kernel;
|
|
using Cosmos.TestRunner.Core;
|
|
|
|
namespace Cosmos.TestRunner.Console
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
var xEngine = new Engine();
|
|
xEngine.AddKernel(typeof(Kernel).Assembly.Location);
|
|
xEngine.OutputHandler = new OutputHandlerConsole();
|
|
xEngine.Execute();
|
|
}
|
|
}
|
|
}
|