www.digitalmars.com         C & C++   DMDScript  

D - [bug] FileMode.Out not creating the file

import std.stream;

void main () {

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

}
Feb 08 2004