mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
26 lines
648 B
C#
26 lines
648 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace $nameSpace$
|
|
{
|
|
public class $className$
|
|
{
|
|
public static void Init()
|
|
{
|
|
Main();
|
|
}
|
|
|
|
static void Main()
|
|
{
|
|
// 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);
|
|
}
|
|
}
|
|
}
|