ShiftOS-Rewind/ShiftOS.Engine/Terminal/Commands/Hello.cs

22 lines
458 B
C#
Raw Normal View History

2017-10-14 18:42:11 +01:00
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)
{
2017-10-14 18:47:54 +01:00
return "Oh, HELLO, " + String.Join(" ", parameters);
2017-10-14 18:42:11 +01:00
}
}
}