Cosmos/Users/Sentinel/SentinelKernel/Kernel.cs
2016-01-17 00:47:00 -06:00

25 lines
474 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Sys = Cosmos.System;
namespace SentinelKernel
{
public class Kernel : Sys.Kernel
{
protected override void BeforeRun()
{
}
protected override void Run()
{
string a = "test";
double b = 1.25;
Console.WriteLine($"{a} = {b}");
mDebugger.Send($"{a} = {b}");
}
}
}