Cosmos/source2/VSIP/Cosmos.VS.Package/Templates/Projects/CosmosProject (C#)/ProjKernel/Kernel.cs
mterwoord_cp b2b1e4b006
2010-08-09 12:34:29 +00:00

21 lines
588 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace $safeprojectname$
{
public class Kernel
{
public static void Boot()
{
// Boot the Cosmos kernel:
Cosmos.Sys.Boot xBoot = new Cosmos.Sys.Boot();
xBoot.Execute();
Console.WriteLine("Cosmos booted successfully. Type a line of text to get it echoed back:");
string xResult = Console.ReadLine();
Console.Write("Text typed: ");
Console.WriteLine(xResult);
}
}
}