Help for this page

Select Code to Download


  1. or download this
    sub FeetIntact{
        my ($self,$shootSomeoneElse) = (@_);
        # ...
    }
    
  2. or download this
    FeetIntact( toe => big, smell => roquefort );
    sub FeetIntact{
        my %par = (@_);
        # $par { smell } now has value 'roquefort'
    }