aboutsummaryrefslogtreecommitdiff
path: root/test-suite/ocaml_pwd.ml
blob: 10ca52a4a9f3a2ff72e132f98c18d55c799ce656 (plain)
1
2
3
4
5
6
7
let _ =
  let ch_dir = Sys.argv.(1) in
  Sys.chdir ch_dir;
  let dir = Sys.getcwd () in
  (* Needed for windows *)
  let dir = Filename.quote dir in
  Format.printf "%s%!" dir