Please advice on where can I find the lib in order to use the shorter expression of System.out.println() and where should I place that lib.
System.out.println()
In Java 8 :
List players = new ArrayList<>(); players.forEach(System.out::println);