Make directory path: Difference between revisions

m
→‎{{header|OCaml}}: fix file permissions
(Added OCaml)
m (→‎{{header|OCaml}}: fix file permissions)
Line 508:
| p::ps ->
let this = String.concat Filename.dir_sep (List.rev (p::acc)) in
Unix.mkdir this 0o700perms;
aux (p::acc) ps
in