Improved example command

This commit is contained in:
Alex-TIMEHACK 2017-10-14 18:47:54 +01:00
parent 09215a05dd
commit 9952cfd7eb

View file

@ -15,7 +15,7 @@ namespace ShiftOS.Engine.Terminal.Commands
public override string Run(params string[] parameters)
{
return "Oh, HELLO," + parameters[0];
return "Oh, HELLO, " + String.Join(" ", parameters);
}
}
}