Files
2025-02-05 04:43:28 +00:00

10 lines
162 B
Plaintext

void test() {
while (checkCondition()) {
somethingElse();
<spot>if (checkCondition()) {
break;
}
System.out.println("Text");</spot>
}
}