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