mirror of
https://github.com/tonytins/tomas.git
synced 2025-04-30 03:31:39 -04:00
- Imported CSTNet parser to kernal under Globalization namespace - Added System.Diagnostics to global usings - Split version systems between kernal and terminal emulator (see changelog)
14 lines
No EOL
366 B
C#
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;
|
|
}
|
|
} |