view tangotests/u.d @ 242:ab43d1e1bf2a trunk

[svn r259] Enabled ASM for the GC, this closes #45 by saving the registers on the stack.
author lindquist
date Mon, 09 Jun 2008 02:05:02 +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;
}