mirror of
https://github.com/clearlinux/official-images.git
synced 2026-08-25 23:15:47 +00:00
10 lines
203 B
Java
10 lines
203 B
Java
public class container {
|
|
/**
|
|
* Simple "hello world" to test the java can compile and/or run
|
|
*/
|
|
public static void main(String[] args) {
|
|
System.out.println("Hello World!");
|
|
System.exit(0);
|
|
}
|
|
}
|