list.forEach(System.out::println);
list.forEach(t -> System.out.println(t));
for (String element : list) { System.out.println(element); }