mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-23 10:12:16 +00:00
9 lines
No EOL
247 B
C#
9 lines
No EOL
247 B
C#
namespace ShiftOS.Engine.Terminal.Commands
|
|
{
|
|
public class Hello : TerminalCommand
|
|
{
|
|
public override string GetName() => "Hello";
|
|
|
|
public override string Run(params string[] parameters) => "Oh, HELLO, " + string.Join(" ", parameters);
|
|
}
|
|
} |