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

5 lines
56 B
Plaintext

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