Cross Reference: Main.java
xref
: /
opengrok
/
testdata
/
sources
/
java
/
Main.java
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
Main.java revision 49180e08afc7cf03413ab108bc71c14e9de1a880
class
Main
{
public
static
void
main
(
String
[]
argv
) {
System
.
out
.
println
(
"Started with the following arguments:"
);
for
(
int
i =
0
; i <
argv
.
length
; ++i) {
System
.
out
.
print
(
'['
);
System
.
out
.
print
(
argv
[i]);
System
.
out
.
print
(
"] "
);
}
System
.
out
.
println
();
}
}