mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 21:20:54 +07:00
5 lines
130 B
Java
5 lines
130 B
Java
class Foo {
|
|
void test(int a, int b) {
|
|
if(a > 0 && a < 10 &<caret>& b > 0 && b < 10) System.out.println(a + b);
|
|
}
|
|
} |