diff --git a/.classpath b/.classpath new file mode 100644 index 0000000..908a526 --- /dev/null +++ b/.classpath @@ -0,0 +1,6 @@ + + + + + + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ae3c172 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/bin/ diff --git a/.project b/.project new file mode 100644 index 0000000..24eff83 --- /dev/null +++ b/.project @@ -0,0 +1,17 @@ + + + HelloBugs + + + + + + org.eclipse.jdt.core.javabuilder + + + + + + org.eclipse.jdt.core.javanature + + diff --git a/HelloBugs/HelloBugs/com/openclassrooms/HelloBugs.java b/HelloBugs/HelloBugs/com/openclassrooms/HelloBugs.java index b1b923b..3db3c1a 100644 --- a/HelloBugs/HelloBugs/com/openclassrooms/HelloBugs.java +++ b/HelloBugs/HelloBugs/com/openclassrooms/HelloBugs.java @@ -1,11 +1,11 @@ package com.openclassrooms; -public clas HelloBugs { +public class HelloBugs { - public static void main(String{}args) { + public static void main(String[]args) { - for(i=0;i>=0;i++) { - System.out.println("Hello buggy code!"): + for ( int i=0 ;i<=4; i++) { + System.out.println("Hello buggy code! " + "iteration: " + i ); } }