mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +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);
|
|
}
|
|
}
|
|
} |