12 lines
111 B
Plaintext
12 lines
111 B
Plaintext
function main(args) {
|
|
local c = 1
|
|
local x
|
|
if c == 1 {
|
|
x = 10
|
|
} else {
|
|
x = 20
|
|
}
|
|
return x
|
|
}
|
|
|