Cosmos/Users/Sentinel/SentinelKernel/Kernel.cs
2016-04-14 13:27:40 -05:00

24 lines
457 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()
{
Console.WriteLine("Cosmos booted successfully.");
}
protected override void Run()
{
string[] a = { "a", "b" };
string b = a[0];
}
}
}