9 lines
108 B
Plaintext
9 lines
108 B
Plaintext
/* Test conditional in ReasonLIGO */
|
|
|
|
let main = (i: int) =>
|
|
if (i == 2) {
|
|
42;
|
|
} else {
|
|
0;
|
|
};
|