RosettaCodeData/Task/Create-a-file/Oz/create-a-file.oz

7 lines
184 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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