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