Cosmos/source/TheRingMaster/Program.cs
José Pedro 2b2ef6ae5b g3
2017-08-08 02:05:35 +01:00

19 lines
365 B
C#

using System;
using System.Text;
namespace TheRingMaster
{
class Program
{
static void Main(string[] args)
{
if (args.Length != 1)
{
Console.WriteLine("Usage: theringmaster <path-to-kernel>");
return;
}
var xKernelAssemblyPath = args[1];
}
}
}