6 lines
71 B
Java
6 lines
71 B
Java
//method
|
|
void foo() {
|
|
for(;;) {
|
|
if (!stop()) break;
|
|
}
|
|
} |