6 lines
103 B
OCaml
6 lines
103 B
OCaml
let condition = true
|
|
|
|
if condition then
|
|
1 (* evaluate something *)
|
|
else
|
|
2 (* evaluate something *)
|