16 lines
307 B
Text
16 lines
307 B
Text
use IO;
|
|
|
|
bundle Default {
|
|
class FileExample {
|
|
function : Main(args : String[]) ~ Nil {
|
|
file := FileWriter->New("output.txt");
|
|
file->Close();
|
|
|
|
file := FileWriter->New("/output.txt");
|
|
file->Close();
|
|
|
|
Directory->Create("docs");
|
|
Directory->Create("/docs");
|
|
}
|
|
}
|
|
}
|