mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-07 11:45:31 -05:00
15 lines
200 B
OCaml
15 lines
200 B
OCaml
#use "topfind";;
|
|
#directory "_build/";;
|
|
|
|
#require "unix";;
|
|
|
|
let ok () =
|
|
print_endline "... OK";
|
|
exit 0;;
|
|
|
|
let fail msg =
|
|
print_endline ("... FAILURE " ^ msg);
|
|
exit 1;;
|
|
|
|
(* vim:syntax=ocaml
|
|
*)
|