Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        my $g = Greeting->new;
    }
    say 'Bye';
    
  2. or download this
    package Greeting;
    use strict;
    ...
    }
    
    1;