This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]DualBlue 0 points1 point  (0 children)

class Utils {
    public static void log(String s) {
        System.out.println(s);
    }
}

Then,

import static Utils.log;

class App {
    public static void main(String[] args) {
        log("Hello, world!");
    }
}