RosettaCodeData/Task/Conditional-structures/OCaml/conditional-structures-2.ocaml
2023-07-01 13:44:08 -04:00

8 lines
142 B
Text

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