Sophie

Sophie

distrib > Mageia > 5 > i586 > by-pkgid > cf2c96ed9265bf454a821fd0e1cf6fa0 > files > 26

bluej-3.1.1-4.mga5.noarch.rpm

/**
 * Class Hello:
 *
 * Hello-world program to demonstrate BlueJ.
 */
class Hello
{
    /**
     * Method that does the work 
     */
    public void go()
    {
        System.out.println("Hello, world");
    }
    
    /**
     *  main method for testing outside BlueJ 
     */
    public static void main(String[] args)
    {
        Hello hi = new Hello();
        hi.go();
    }
}