13 lines
242 B
Text
13 lines
242 B
Text
use IO;
|
|
|
|
bundle Default {
|
|
class FileExample {
|
|
function : Main(args : String[]) ~ Nil {
|
|
File->Delete("output.txt");
|
|
File->Delete("/output.txt");
|
|
|
|
Directory->Delete("docs");
|
|
Directory->Delete("/docs");
|
|
}
|
|
}
|
|
}
|