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

9 lines
64 B
Plaintext

local x = 0
if (1 < 2) {
x = 10
} else {
x = 20
}
print(x)