8 lines
131 B
D
8 lines
131 B
D
import tango.io.Path;
|
|
|
|
void main() {
|
|
remove("input.txt");
|
|
remove("/input.txt");
|
|
remove("docs");
|
|
remove("/docs");
|
|
}
|