view tangotests/u.d @ 140:ffcc9a2f3d9d trunk

[svn r144] fixes
author lindquist
date Wed, 23 Jan 2008 12:56:09 +0100
parents
children
line wrap: on
line source

import tango.io.Console;
void main()
{
    Cout("getting name std").newline;
    Cerr("getting name err").newline;
    auto s = Cin.get();
    Cout("putting name").newline;
    Cout (s).newline;
}