1 // Ohjelma tulostaa tekstin Hello world! 2 class Hello { 3 public static void main(String[] args) { 4 System.out.println("Hello world!"); 5 } 6 } 7