RosettaCodeData/Task/Delete-a-file/Objeck/delete-a-file.objeck
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

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");
}
}
}