leo/compiler/tests/statements/conditional/cond_switch.leo
2021-03-23 15:49:56 -07:00

9 lines
146 B
Plaintext

function main (x: bool) -> bool {
if false {
return x
} else if x {
return false
} else {
return false
}
}