Files
hakorune/apps/tests/llvm_if_phi_ret.hako

12 lines
111 B
Plaintext

function main(args) {
local c = 1
local x
if c == 1 {
x = 10
} else {
x = 20
}
return x
}