Helloworld.java
1    /* 
2     *Traditional starter program 
3     */
4    package greetings;
5    
6    public class Helloworld {
7        public static void main(String[] args){System.out.println("Hellow world!");}
8    }
9