diff options
| author | Alex-TIMEHACK <[email protected]> | 2017-10-14 18:42:11 +0100 |
|---|---|---|
| committer | Alex-TIMEHACK <[email protected]> | 2017-10-14 18:42:11 +0100 |
| commit | 09215a05ddc717b2eaf667737ac6baa724c5f2bc (patch) | |
| tree | 0eb9375da2121b16b7c7b10bfbd3ecffdb7f9f4c /ShiftOS.Engine/Terminal/Commands | |
| parent | 5d1004015d797892181b1181a6772bb358871f83 (diff) | |
| download | shiftos-rewind-09215a05ddc717b2eaf667737ac6baa724c5f2bc.tar.gz shiftos-rewind-09215a05ddc717b2eaf667737ac6baa724c5f2bc.tar.bz2 shiftos-rewind-09215a05ddc717b2eaf667737ac6baa724c5f2bc.zip | |
YOY terminal
Diffstat (limited to 'ShiftOS.Engine/Terminal/Commands')
| -rw-r--r-- | ShiftOS.Engine/Terminal/Commands/Hello.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ShiftOS.Engine/Terminal/Commands/Hello.cs b/ShiftOS.Engine/Terminal/Commands/Hello.cs new file mode 100644 index 0000000..daf8488 --- /dev/null +++ b/ShiftOS.Engine/Terminal/Commands/Hello.cs @@ -0,0 +1,21 @@ +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]; + } + } +} |
