package com.wiley.compbooks.brose.chapter3.hello;

import java.io.*;

public class Application 
{

    public static void main(String args[]) 
    {
        // create object of class GoodDayImpl
	GoodDayImpl goodDay = new GoodDayImpl( "Berlin" );

	// invoke method hello() and print result
        System.out.println( goodDay.hello() );
    }
}

