Java程序  |  8行  |  148 B

public class HelloWorld {

    static String hw="Hello world";

    public static void main(String[] args) {
        System.out.println(hw);
    }
}