mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 07:28:24 +07:00
GitOrigin-RevId: 122e10e69f93c31e289a024381c7315f1a62203b
19 lines
249 B
Plaintext
19 lines
249 B
Plaintext
class Main {
|
|
void test() {
|
|
System.out.println("[" + 1 + ", " + 2 + "]");
|
|
}
|
|
}
|
|
|
|
class Point {
|
|
private int x, y;
|
|
|
|
public Point(int _x, int _y) {
|
|
x = _x;
|
|
y = _y;
|
|
}
|
|
|
|
public String toString() {
|
|
return "["+x+", "+y+"]";
|
|
}
|
|
}
|