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