5 lines
56 B
Plaintext
5 lines
56 B
Plaintext
|
|
local x = 0
|
||
|
|
x = if (1 < 2) { 10 } else { 20 }
|
||
|
|
print(x)
|
||
|
|
|