Untested Java

This commit is contained in:
ilsix 2024-04-04 20:17:26 +02:00
parent 116a209516
commit d54c42b319

5
java/helloworld.java Normal file
View File

@ -0,0 +1,5 @@
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}