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