From 09215a05ddc717b2eaf667737ac6baa724c5f2bc Mon Sep 17 00:00:00 2001 From: Alex-TIMEHACK Date: Sat, 14 Oct 2017 18:42:11 +0100 Subject: YOY terminal --- ShiftOS.Engine/Terminal/Commands/Hello.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ShiftOS.Engine/Terminal/Commands/Hello.cs (limited to 'ShiftOS.Engine/Terminal/Commands') 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]; + } + } +} -- cgit v1.2.3