I was always aware of labels in Java to use for loops such as:
myLoop: for(;;) {
// codez
break myLoop;
}
but just recenlty I found out that this is valid:
myLabel: System.out.println("");
Why would one want to do that? What is the use of this (if any)?