tomas/src/Tomas.Terminal/Programs/About.cs
Tony Bark dc2176b26d Renamed Tomas.Common to Tomas.Core
- Imported CSTNet parser to kernal under Globalization namespace
- Added System.Diagnostics to global usings
- Split version systems between kernal and terminal emulator (see changelog)
2023-01-07 11:22:38 -05:00

14 lines
No EOL
366 B
C#

// I license this project under the BSD 3-Clause license.
// See the LICENSE file in the project root for more information.
using Tomas.Common;
namespace Tomas.Terminal.Programs;
public class About : IProgram
{
public bool Run(IShell shell)
{
Console.WriteLine($"{TermMeta.NAME} Terminal Emulator v{TermMeta.VERSION}");
return true;
}
}