diff --git a/.gitignore b/.gitignore
index f68d109..1ec2945 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,7 @@
out/
!**/src/main/**/out/
!**/src/test/**/out/
+config.json
### Eclipse ###
.apt_generated
diff --git a/src/Main.java b/src/Main.java
index 930198c..13df46a 100644
--- a/src/Main.java
+++ b/src/Main.java
@@ -1,15 +1,8 @@
//TIP To Run code, press or
// click the icon in the gutter.
public class Main {
+ private static config config;
public static void main(String[] args) {
- //TIP Press with your caret at the highlighted text
- // to see how IntelliJ IDEA suggests fixing it.
- System.out.printf("Hello and welcome!");
-
- for (int i = 1; i <= 5; i++) {
- //TIP Press to start debugging your code. We have set one breakpoint
- // for you, but you can always add more by pressing .
- System.out.println("i = " + i);
- }
+ config = new config();
}
}
\ No newline at end of file