Files
hakorune/apps/tests/macro/if/chain_guard.nyash

12 lines
144 B
Plaintext

local x = 5
if (x < 0) {
print(-1)
} else if (x < 3) {
print(0)
} else if ((x < 10) && x.is("Integer")) {
print(1)
} else {
print(2)
}