Helloworld.java
/* 
* Traditional starter program 
 */


package greetings;

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

    }



}