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