15 lines
223 B
Plaintext
15 lines
223 B
Plaintext
|
|
static box IfSelectLocalTest {
|
||
|
|
main() {
|
||
|
|
local x
|
||
|
|
local cond
|
||
|
|
cond = 1
|
||
|
|
if cond {
|
||
|
|
x = 100
|
||
|
|
} else {
|
||
|
|
x = 200
|
||
|
|
}
|
||
|
|
print(x)
|
||
|
|
return 0
|
||
|
|
}
|
||
|
|
}
|