Issue
what is the absolute shortest possible shortcut to call System.out.println that makes it callable via the shortest possible number of characters (like print())
Solution
import static java.lang.System.out;
And in your code:
out.println("Foo");
Answered By - minichate
Answer Checked By - Cary Denson (JavaFixing Admin)