Working helloworld with test

This commit is contained in:
Mateusz Pieła 2024-03-09 22:30:29 +01:00
commit 0f32ba8b15
4 changed files with 92 additions and 0 deletions

View file

@ -0,0 +1,8 @@
package eu.mateuszpiela.helloworld;
public class Main {
public static void main(String[] args) {
System.out.println("Hello world from java");
}
}