mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
24 lines
534 B
C#
24 lines
534 B
C#
using System;
|
|
using PlaygroundSystem;
|
|
using Sys = Cosmos.System;
|
|
|
|
namespace Playground
|
|
{
|
|
public class Kernel : OurKernel
|
|
{
|
|
protected override void BeforeRun()
|
|
{
|
|
Console.WriteLine("Cosmos booted successfully. Type a line of text to get it echoed back.");
|
|
}
|
|
|
|
protected override void Run()
|
|
{
|
|
Console.WriteLine("Started");
|
|
Console.ReadLine();
|
|
Console.WriteLine("Done");
|
|
|
|
base.DoIt();
|
|
|
|
}
|
|
}
|
|
}
|