view tests/minicomplex/u.d @ 960:0b38b64f62c7

Add OSX version declaration for Mac OS X to improve dmd-mac compatibility.
author Christian Kamm <kamm incasoftware de>
date Sun, 15 Feb 2009 21:44:03 +0100
parents 1bb99290e03a
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;
}