mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-31 13:21:05 +00:00
15 lines
394 B
VB.net
15 lines
394 B
VB.net
Imports Cosmos.Debug
|
|
|
|
Public Class Kernel
|
|
|
|
Public Shared Sub Boot()
|
|
Dim xBoot = New Cosmos.Sys.Boot()
|
|
xBoot.Execute()
|
|
|
|
Console.WriteLine("Cosmos booted successfully. Type a line of text to get it echoed back:")
|
|
Dim xResult = Console.ReadLine()
|
|
Console.Write("Text typed: ")
|
|
Console.WriteLine(xResult)
|
|
End Sub
|
|
|
|
End Class
|