Help for this page

Select Code to Download


  1. or download this
    use Some::Module qw(the-mascot);
    
    the-mascot();
    
  2. or download this
    use Some::Module;
    
    my $a = new Some::Module;
    $a->animal("parrot");
    $a->mascot;
    
  3. or download this
    $data = "camel";
    
    ...
    sub mascot {
             the-mascot();
    }
    
  4. or download this
    sub the-mascot {
    my $self = shift;
    ...
    
    END
    }