view tangotests/u.d @ 218:df641a27e9fd trunk

[svn r234] Fixed: missed a few bogus #ifs in last revision.
author lindquist
date Thu, 05 Jun 2008 06:43:34 +0200
parents ffcc9a2f3d9d
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;
}