D - [bug] FileMode.Out not creating the file
- "C" <dont respond.com> Feb 08 2004
import std.stream;
void main () {
File x = new File("new_file_name",FileMode.Out );
x.writeString("foo");
x.close();
}
Feb 08 2004
import std.stream;
void main () {
File x = new File("new_file_name",FileMode.Out );
x.writeString("foo");
x.close();
}