view tangotests/files1.d @ 260:d69d4543c441 trunk

[svn r278] Added test results for [277]
author lindquist
date Fri, 13 Jun 2008 07:50:55 +0200
parents 1856c62af24b
children
line wrap: on
line source

module tangotests.files1;

//import tango.io.Stdout;
import tango.io.File;

void main()
{
    auto file = new File("files1.output");
    char[] str = "hello world from files1 test\n";
    void[] data = cast(void[])str;
    file.write(str);
}