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
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.