Files
hakorune/apps/tests/macro/match/guard_literal_or.nyash

9 lines
96 B
Plaintext

local d = 2
local r = match d {
1 if (1 < 2) => 10
2 if (2 < 3) => 20
_ => 30
}
print(r)