Added trm.echo command

This commit is contained in:
Carver Harrison 2017-01-08 12:23:16 -08:00 committed by GitHub
parent 252307cd3e
commit 03964a4dd7

View file

@ -169,6 +169,13 @@ namespace ShiftOS.Engine {
AppearanceManager.ConsoleOut.Clear();
return true;
}
[Command("echo")]
[RequiresArgument("text")]
public static bool Echo(Dictionary<string, object> args) {
Console.WriteLine(args["text"]);
return true;
}
}
#if DEVEL