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