mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 20:50:54 +07:00
10 lines
203 B
Java
10 lines
203 B
Java
// "Move condition to loop" "true-preview"
|
|
class Main {
|
|
public static void main(String[] args) {
|
|
int i = 0;
|
|
while (i < 12) {
|
|
i++;
|
|
System.out.println("asda");
|
|
}
|
|
}
|
|
} |