mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-31 05:11:08 +00:00
25 lines
656 B
C#
25 lines
656 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Sys = Cosmos.System;
|
|
|
|
namespace MatthijsPlayground
|
|
{
|
|
public class Kernel : Sys.Kernel
|
|
{
|
|
protected override void BeforeRun()
|
|
{
|
|
Console.WriteLine("Cosmos booted successfully. Type a line of text to get it echoed back.");
|
|
}
|
|
|
|
protected override void Run()
|
|
{
|
|
Console.Write("Input: ");
|
|
var input = Console.ReadLine();
|
|
int xA = 0;
|
|
int xB = 13;
|
|
Console.WriteLine("Test");
|
|
Console.WriteLine((xA + xB).ToString());
|
|
}
|
|
}
|
|
}
|