D - sample code for stdin on linux
- "Ahmet Takci" <atakci yahoo.com> Dec 24 2003
- Ant <duitoolkit yahoo.ca> Dec 24 2003
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, Ahmet
like 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








Ant <duitoolkit yahoo.ca>