Initial commit

This commit is contained in:
Patrick Müller 2021-04-09 18:16:15 +02:00
commit 7b7b96238f
2 changed files with 10 additions and 0 deletions

3
Gabriel-Java-Learning/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
./idea/
*.iml
/target/

View File

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