Return of kernal programs

- Boot log is now cleared
- File scoped namespaces work
This commit is contained in:
Tony Bark 2023-01-06 19:34:09 -05:00
parent 7530f8500b
commit a06f9ccc9f
9 changed files with 136 additions and 94 deletions

View file

@ -1,17 +1,15 @@
// I license this project under the BSD 3-Clause license.
// See the LICENSE file in the project root for more information.
using Tomas.Common;
using Tomas.Interface;
namespace Tomas.Terminal.Programs
namespace Tomas.Terminal.Programs;
public class About : IProgram
{
public class About : IProgram
{
public bool Run(IShell shell)
{
Console.WriteLine($"{ComConsts.NAME} Terminal Emulator v{ComConsts.VersionGit}{Environment.NewLine}"
+ "TOMAS (Tony's Managed Operating System) is a operating system written in C# using the COSMOS framework.");
return true;
}
}
public bool Run(IShell shell)
{
Console.WriteLine($"{ComConsts.NAME} Terminal Emulator v{ComConsts.VersionGit}{Environment.NewLine}"
+ "TOMAS (Tony's Managed Operating System) is a operating system written in C# using the COSMOS framework.");
return true;
}
}