Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
j2k
/
testData
/
fileOrElement
/
for
/
arrayIndicesReversed.java
blob: c501904cc75aaa0e20dc099220f9b2bd92156529 [
file
] [
log
] [
blame
]
import
java
.
util
.
Collection
;
public
class
A
{
void
foo
(
String
[]
array
)
{
for
(
int
i
=
array
.
length
-
1
;
i
>=
0
;
i
--)
{
System
.
out
.
println
(
i
);
}
}
}