Cosmos/source/Archive/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (FSharp)/Kernel.fs

12 lines
No EOL
378 B
Forth

namespace $safeprojectname$
open System
type Kernel() =
inherit Cosmos.System.Kernel()
override u.BeforeRun() = (Console.WriteLine("Cosmos booted successfully. Type a line of text to get it echoed back.");)
override u.Run() =
Console.Write("Input: ");
let input = Console.ReadLine();
Console.Write("Text typed: ");
Console.WriteLine(input);