6 lines
70 B
Plaintext
6 lines
70 B
Plaintext
|
int x(int i) {
|
||
|
println(i);
|
||
|
return i;
|
||
|
}
|
||
|
|
||
|
println(x(1) || x(0));
|