6 lines
77 B
D
6 lines
77 B
D
|
|
import std.file: copy;
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
copy("input.txt", "output.txt");
|
||
|
|
}
|