mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 00:29:58 +07:00
9 lines
158 B
Java
9 lines
158 B
Java
class C {
|
|
Object foo = null;
|
|
|
|
void case01() {
|
|
for(int i = 10; (--i) > 0; ) {
|
|
System.out.println("index = " + i);
|
|
}
|
|
}
|
|
} |