mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
13 lines
256 B
Java
13 lines
256 B
Java
class Test {
|
|
public static final Test INSTANCE = new Test();
|
|
|
|
public Test() {
|
|
if (INSTANCE == null) {
|
|
System.out.println("Instance is null");
|
|
}
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println("Hello, world!");
|
|
}
|
|
} |