Help for this page

Select Code to Download


  1. or download this
    sub new {
        # shift means shift @_ and will have $_[0] inside
    ...
        return bless(shift, {text => "I am a a duck.\n"});
        # and the class name needs to be first parameter
    }