mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-06 19:06:02 +03:00
12 lines
242 B
D
12 lines
242 B
D
module tangotests.files1;
|
|
|
|
//import tango.io.Stdout;
|
|
import tango.io.File;
|
|
|
|
void main()
|
|
{
|
|
auto file = new File("files1.output");
|
|
char[] str = "hello world from files1 test\n";
|
|
void[] data = cast(void[])str;
|
|
file.write(str);
|
|
}
|