mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
23 lines
251 B
Plaintext
23 lines
251 B
Plaintext
class Main {
|
|
void test() {
|
|
System.out.println(1);
|
|
}
|
|
}
|
|
|
|
class Point {
|
|
private int x, y;
|
|
|
|
public Point(int x, int y) {
|
|
this.x = x;
|
|
this.y = y;
|
|
}
|
|
|
|
public int getX() {
|
|
return x;
|
|
}
|
|
|
|
public int getY() {
|
|
return y;
|
|
}
|
|
}
|