Files
hakorune/apps/tests/ternary_nested.hako

11 lines
179 B
Plaintext

static box Main {
main(args) {
local a = 3
local b = 5
// Nested ternary: should evaluate to 50
local v = (a < b) ? ((b < 0) ? 40 : 50) : 60
return v
}
}