mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-23 18:22:16 +00:00
21 lines
442 B
C#
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];
|
|
}
|
|
}
|
|
}
|