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

View File

@@ -0,0 +1,22 @@
using System;
public class GreetCommand : ICommand
{
public string Name => "greet";
public string Description => "greets someone.. args [name]";
public void Execute(string[] args)
{
if (args.Length == 0)
{
Console.WriteLine(Description);
return;
}
Console.WriteLine("Greetings , " + args[0]);
}
}