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

3 lines
144 B
Text

let a = get_some_value () in
assert (a = 42); (* throws Assert_failure when a is not 42 *)
(* evaluate stuff to return here when a is 42 *)