in reply to Re: Real Basic Perl OOP Question
in thread Real Basic Perl OOP Question
Hi Codon,
Thank you. Though I am confused.
Based on a recommendation by Zaxo (where I posted this before and didn't realize it was available), I changed:
my $name2 = Message->name( $message_obj );
to
my $name2 = $message_obj->name( );
and it worked! :-)
Tony