mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
11 lines
230 B
Java
11 lines
230 B
Java
class AssignTest {
|
|
public static void main(String[] args) {
|
|
int foo = 0;
|
|
|
|
while (true) {
|
|
if (foo != 12) System.out.println("Test");
|
|
if (Math.random() > 0.5) foo = 22;
|
|
}
|
|
}
|
|
}
|