February 08, 2004
import std.stream;

void main () {

 File x = new File("new_file_name",FileMode.Out );
 x.writeString("foo");
 x.close();

}