8 lines
144 B
D
8 lines
144 B
D
|
|
import tango.io.device.File;
|
||
|
|
|
||
|
|
void main()
|
||
|
|
{
|
||
|
|
auto to = new File("output.txt", File.WriteCreate);
|
||
|
|
to.copy(new File("input.txt")).close;
|
||
|
|
}
|