D - [bug] FileMode.Out not creating the file
- C (6/6) Feb 08 2004 import std.stream;
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();
}