Sign in
apache
/
netbeans
/
980c7f261edc4e4eed0d30056de05b3018112265
/
.
/
java
/
java.editor
/
test
/
qa-functional
/
data
/
CC15Tests
/
src
/
test3
/
CCTest3i.java
blob: 8f5d5910d69d4f60bc1c38ae2f736cef72ac64d3 [
file
]
package
test3
;
import
java
.
util
.
ArrayList
;
import
java
.
util
.
List
;
public
class
CCTest3i
{
public
static
void
main
(
String
[]
args
)
{
List
<
String
>
l
;
l
=
new
ArrayList
<
String
>();
l
.
add
(
"Hello, world"
);
for
(
String
s
:
l
)
{
}
}
}