mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-23 10:12:16 +00:00
21 lines
458 B
C#
21 lines
458 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ShiftOS.Engine.Terminal.Commands
|
|
{
|
|
public class Hello : TerminalCommand
|
|
{
|
|
public override string GetName()
|
|
{
|
|
return "Hello";
|
|
}
|
|
|
|
public override string Run(params string[] parameters)
|
|
{
|
|
return "Oh, HELLO, " + String.Join(" ", parameters);
|
|
}
|
|
}
|
|
}
|