Cosmos/source2/Demos/Guess/GuessOS.cs
kudzu_cp f9738b56b4
2010-08-20 22:52:02 +00:00

15 lines
No EOL
377 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Sys = Cosmos.System;
namespace GuessKernel {
public class GuessOS : Sys.Kernel {
protected override void BeforeRun() {
Console.WriteLine("Guess");
}
protected override void Run() {
string xResult = Console.ReadLine();
}
}