RosettaCodeData/Task/Check-that-file-exists/OCaml/check-that-file-exists.ml
2024-10-16 18:07:41 -07:00

4 lines
112 B
OCaml

Sys.file_exists "input.txt";;
Sys.file_exists "docs";;
Sys.file_exists "/input.txt";;
Sys.file_exists "/docs";;