Files
Random-Project/TermEngine/GreetCommand.cs
2025-07-08 04:29:21 +03:00

22 lines
379 B
C#

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]);
}
}