Help for this page
# file noname1.pm: use strict; ... my $hi = World->new (); # Create derived class object print $hi->hi ('. How goes it?'); # Call method on derived class objec +t
Hello World. How goes it?