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

9 lines
142 B
OCaml
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
if condition then begin
(); (* evaluate things for side effects *)
5
end
else begin
(); (* evaluate things for side effects *)
42
end