blob: 5c2754d5478469ea69c38235975868635a572d9c [file]
package test3;
import java.util.ArrayList;
import java.util.List;
public class CCTest3 {
public static void main(String[] args) {
List<String> l;
l = new ArrayList<String>();
l.add("Hello, world");
for (String s : l) {
s.indexOf("Hello"); //Check the methods provided after the dot
}
}
}