mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 00:19:11 +07:00
GitOrigin-RevId: 72c7c6ec9865984b997a05c2b8756771aa388ddb
14 lines
284 B
Plaintext
14 lines
284 B
Plaintext
class MyWorld {
|
|
|
|
public void process(Object[] o) {
|
|
int i = 0;
|
|
while (o[i] instanceof String && ((String) o[i]).startsWith("hello")) {
|
|
i++;
|
|
}
|
|
i = 0;
|
|
while (!(o[i] instanceof String && ((String) o[i]).startsWith("hello"))) {
|
|
i++;
|
|
}
|
|
}
|
|
}
|