I am building a base os, with COSMOS (I don't have a mac). So, I have successfully got the os to accept three commands, help, shutdown, restart.
However here is the bit I am stuck on:
Console.Writeline("Command>");
Console.Readline();
This gets this:
Command>
[blank space for Readline command]
Here is what I want:
- The
Console.Readline
input to be on the same line asConsole.Writeline
So This is what I want (user interface):
Command> [user input here]