Files
hakorune/gemini_test_case.hako

15 lines
194 B
Plaintext

local cond1 = true
local cond2 = false
local x = 0
loop(true) {
if(cond1) {
if(cond2) {
x = 1
} else {
x = 2
}
break
}
}
print(x)