RosettaCodeData/Task/Conditional-structures/OCaml/conditional-structures-2.ocaml

9 lines
142 B
Plaintext

if condition then begin
(); (* evaluate things for side effects *)
5
end
else begin
(); (* evaluate things for side effects *)
42
end