mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-21 17:21:34 +03:00
9 lines
146 B
Plaintext
9 lines
146 B
Plaintext
function main (x: bool) -> bool {
|
|
if false {
|
|
return x
|
|
} else if x {
|
|
return false
|
|
} else {
|
|
return false
|
|
}
|
|
} |