9 lines
131 B
D
9 lines
131 B
D
|
|
import tango.stdc.posix.unistd;
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
unlink("input.txt");
|
||
|
|
unlink("/input.txt");
|
||
|
|
rmdir("docs");
|
||
|
|
rmdir("/docs");
|
||
|
|
}
|