Files
processing4/app/test/resources/bug631.pde
2010-03-18 02:14:47 +00:00

7 lines
162 B
Plaintext

firstLoop:
for (int i = 0; i < 10; i++) {
for (int j = 0; j < 10; j++) {
if ((i+j) % 5 != 0) continue firstLoop;
System.out.println(i + " " + j);
}
}