9 lines
81 B
Plaintext
9 lines
81 B
Plaintext
|
|
function main(args) {
|
||
|
|
if 1 {
|
||
|
|
print("x")
|
||
|
|
} ; else {
|
||
|
|
print("y")
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|