Cosmos/source2/Users/Kudzu/Breakpoints/Program.cs
mterwoord_cp b73e2e78e4
2010-08-03 13:21:51 +00:00

28 lines
828 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.User.Kernel {
public class Program {
public static void Init() {
Main();
}
static void Main() {
Cosmos.Sys.Boot xBoot = new Cosmos.Sys.Boot();
xBoot.Execute();
Console.WriteLine("Test");
Console.WriteLine("3 Cosmos booted successfully. Type a line of text to get it echoed back.");
Console.WriteLine("Test");
while (true) {
Console.Write("Input: ");
string xResult = Console.ReadLine();
Console.Write("Text typed: ");
Console.WriteLine(xResult);
//Cosmos.Debug.Debugger.Send(xResult);
}
}
}
}