Help for this page

Select Code to Download


  1. or download this
    # 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
    
  2. or download this
    Hello World. How goes it?