mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
9 lines
108 B
Plaintext
9 lines
108 B
Plaintext
public class X {
|
|
int f(int a) {
|
|
if (a == 0) {
|
|
return 1;
|
|
} else {
|
|
return 2;
|
|
}
|
|
}
|
|
} |