view tangotests/u.d @ 204:11fe364b9a3e trunk

[svn r220] Added: test results for [219]
author lindquist
date Tue, 13 May 2008 16:16:50 +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;
}