Help for this page

Select Code to Download


  1. or download this
    sub new {
        my $class = shift;
        croak "incorrect number of arguments" if @_ % 2;
        ...
    }
    
  2. or download this
    print "$foo is divisible by $bar" if $foo % $bar == 0;