RosettaCodeData/Task/Create-a-file/Oz/create-a-file.oz
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

6 lines
184 B
Text

for Dir in ["/" "./"] do
File = {New Open.file init(name:Dir#"output.txt" flags:[create])}
in
{File close}
{OS.mkDir Dir#"docs" ['S_IRUSR' 'S_IWUSR' 'S_IXUSR' 'S_IXGRP']}
end