Moved test resource files to a better matching location

This commit is contained in:
Roel Spilker
2009-12-01 23:23:35 +01:00
parent 2a56f341d0
commit 2aebaff460
41 changed files with 6 additions and 19 deletions
+12
View File
@@ -0,0 +1,12 @@
public class ForLoop {
public static void main(String[] args) {
// before loop
for (int i = 0; i < 10; i++) {
// start of block
System.out.println(i);
// end of block
}
// after loop
}
}