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

10 lines
84 B
Plaintext

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