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

6 lines
144 B
Text

# let oc = open_out "output.txt" in
close_out oc;;
- : unit = ()
# Unix.mkdir "docs" 0o750 ;; (* rights 0o750 for rwxr-x--- *)
- : unit = ()