mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 19:33:13 +01:00
13 lines
242 B
D
13 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);
|
|
}
|