For some reason the cycles for does not work for me in eclipse luna, update the jdk but it's still the same, this is the simple code
public class main {
public static void main(String[] arg) {
System.out.println("inicio");
for(int i = 0; i > 10; i++) {
System.out.println("Numer: " + i);
}
}}
for some reason it does not work, it's as if the for did not exist, it just happens to me with that and it's very weird.