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()
A minor point perhaps, but:
import static System.out; public class Tester { public static void main(String[] args) { out.println("Hello!"); } }
...generated a compile time error. I corrected the error by editing the first line to read:
import static java.lang.System.out;