mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
16 lines
No EOL
380 B
C#
16 lines
No EOL
380 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();
|
|
}
|
|
}
|
|
} |