www.digitalmars.com         C & C++   DMDScript  

D - sample code for stdin on linux

reply "Ahmet Takci" <atakci yahoo.com> writes:
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
parent Ant <duitoolkit yahoo.ca> writes:
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