view tangotests/u.d @ 146:ddfdae91281a trunk

[svn r151] fixed #29: out contracts work now
author ChristianK
date Mon, 10 Mar 2008 19:29:39 +0100
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;
}