commit
51208cb5c8
1 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
Reference in a new issue