February 08, 2004 [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(); } |
Copyright © 1999-2021 by the D Language Foundation
February 08, 2004 [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(); } |