diff --git a/.gitignore b/.gitignore index f68d109..9211a32 100644 --- a/.gitignore +++ b/.gitignore @@ -26,4 +26,5 @@ bin/ .vscode/ ### Mac OS ### -.DS_Store \ No newline at end of file +.DS_Store +/.idea/ diff --git a/src/Main.java b/src/Main.java index 4b497d3..839a064 100644 --- a/src/Main.java +++ b/src/Main.java @@ -4,14 +4,8 @@ public class Main { public static void main(String[] args) { // Press Alt+Enter with your caret at the highlighted text to see how // IntelliJ IDEA suggests fixing it. - System.out.printf("Hello and welcome!"); - System.out.println(" "); - // Press Shift+F10 or click the green arrow button in the gutter to run the code. - for (int i = 1; i <= 5; i++) { + System.out.printf("Hello world!"); + - // Press Shift+F9 to start debugging your code. We have set one breakpoint - // for you, but you can always add more by pressing Ctrl+F8. - System.out.println("i = " + i); - } } } \ No newline at end of file