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

class GoodDayImpl implements GoodDay {

    private String location;

    // constructor
    GoodDayImpl( String location ) {
        this.location = location;
    }

    // method
    public String hello() {
        return "Hello World, from " + location;
    }
}
