public class Hello { public static void main(String[] args) { hello(); } static void hello() { System.out.println("Hello Java world!"); } }