view tango/example/conduits/filecopy.d @ 228:52d1e9d27dc6 trunk

[svn r244] added another asm test.
author lindquist
date Sat, 07 Jun 2008 19:20:15 +0200
parents 1700239cab2e
children
line wrap: on
line source


private import  tango.io.Console,
                tango.io.FileConduit;

/*******************************************************************************

        open a file, and stream directly to console

*******************************************************************************/

void main (char[][] args)
{
        if (args.length is 2)
           {
           // open a file for reading
           auto fc = new FileConduit (args[1]);

           // stream directly to console
           Cout.stream.copy (fc);
           }
        else
           Cout ("usage is: filecopy filename").newline;
}