ShiftOS-Rewind/ShiftOS.Engine/Terminal/Commands/Hello.cs
2017-10-14 18:42:11 +01:00

21 lines
442 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," + parameters[0];
}
}
}