GG EZ, ima go piss

This commit is contained in:
2025-07-08 04:29:21 +03:00
parent fd78d9283e
commit e3dc8d9d42
31 changed files with 441 additions and 0 deletions

35
TermEngine/Program.cs Normal file
View File

@@ -0,0 +1,35 @@
using System;
using System.Collections.Generic;
namespace TermApp
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, Works!");
CommandInterpreter interpreter = new CommandInterpreter();
Console.WriteLine("Type help to see avaliable Commands :.) or type exit to quit");
while (true)
{
Console.Write("Input >");
string input = Console.ReadLine();
if (string.IsNullOrWhiteSpace(input)) continue;
if (input.ToLower() == "exit") break;
interpreter.Execute(input);
}
}
}
}