mirror of
https://github.com/tonytins/tomas.git
synced 2025-04-30 03:31:39 -04:00
23 lines
No EOL
713 B
C#
23 lines
No EOL
713 B
C#
// I license this project under the GPL 3.0 license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
using Tomas.Common;
|
|
using Tomas.Interface;
|
|
|
|
namespace Tomas.Kernel.Programs
|
|
{
|
|
public class About : IProgram
|
|
{
|
|
public bool Run(IShell shell)
|
|
{
|
|
Console.WriteLine($"{ComConsts.NAME} v{ComConsts.VersionGit}{Environment.NewLine}"
|
|
+ "TOMAS (Tony's Managed Operating System) is a operating system written in C# using the COSMOS framework.");
|
|
var progs = shell.Programs;
|
|
foreach (var commands in progs.Keys)
|
|
Console.WriteLine(commands);
|
|
|
|
return true;
|
|
}
|
|
}
|
|
} |