added runnable console wrapper example

This commit is contained in:
Basile Burg 2014-11-06 15:02:17 +01:00
parent c41cbc5b52
commit 0787af2b9d
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
module console;
/*
The most simple console wrappr'.
usage:
------
- Use Coedit menu, Compile and Run file to execute.
- use the "Process input widget to pass" commands.
- Don't forget that the Messages widget restricts the item count.
- type "exit" and press SEND to quit.
*/
void main(string args[])
{
import std.process;
//
version(Windows)
string prgname = "cmd";
else
version(Linux) string prgname = "xterm";
else
assert(0, "unsupported target");
//
prgname.spawnProcess.wait;
}