Files
hakorune/apps/tests/macro/if/with_else.hako

12 lines
111 B
Plaintext

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