Código PHP:
public class NewMain {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
String o="";
z: //Eso que es?
for (int x = 0; x < 3; x++) {
for (int y = 0; y < 2; y++) {
if(x==1) {
break;
}
if(x==2&& y==1) {
break z;//Que devuelve?
}
o = o + x + y;
}
}
System.out.println(o);//000120
}
}
¿Alguien sabe que es eso?
Un saludo!