Help for this page

Select Code to Download


  1. or download this
    MyClass->doThat(chew=>'bananas')
    
  2. or download this
    MyClass->doThat('chew', 'bananas')
    
  3. or download this
    MyClass::doThat('MyClass', 'chew', 'bananas')
    
  4. or download this
    sub doThat {
        my $type = shift;
        my %input = @_;
    }