Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions HelloBugs/.project
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,15 @@
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
<filteredResources>
<filter>
<id>1616766657717</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
10 changes: 5 additions & 5 deletions HelloBugs/HelloBugs/com/openclassrooms/HelloBugs.java
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package com.openclassrooms;

public clas HelloBugs {
public class HelloBugs {

public static void main(String{}args) {
for(i=0;i>=0;i++) {
System.out.println("Hello buggy code!"):
public static void main(String[] args) {

for(int i=0;i<5;i++) {
System.out.println("Hello buggyyyy code!!!!");
}

}
Expand Down