RosettaCodeData/Task/Assertions/OCaml/assertions.ocaml
2023-07-01 13:44:08 -04: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 *)