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