mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
11 lines
177 B
Java
11 lines
177 B
Java
class Test {
|
|
static void test() {
|
|
int x = getX();
|
|
System.out.println(x);
|
|
}
|
|
|
|
private static int getX() {
|
|
int x = 42;
|
|
return x;
|
|
}
|
|
} |