D - sample code for stdin on linux
- Ahmet Takci (5/5) Dec 24 2003 Hi ,
- Ant (17/24) Dec 24 2003 like this?:
Hi , Could someone post a sample code on how to get data from stdin and print out to stdout in Linux ?? Regards, Ahmet
Dec 24 2003
On Wed, 24 Dec 2003 14:43:46 +0200, Ahmet Takci wrote:Hi , Could someone post a sample code on how to get data from stdin and print out to stdout in Linux ?? Regards, Ahmetlike this?: import std.stream; void main() { char[] line; while( line != "exit") { printf("type 'exit' to exit\nenter line:\n"); line = stdin.readLine(); stdout.write("got line:\n" ~ line ~ "\n\n"); } } check phobos/std/stream.d for more Ant
Dec 24 2003