Help for this page

Select Code to Download


  1. or download this
    my ($this, $a, $b) = @_;
    
  2. or download this
    sub convert (:$from, :$to, :$thing) { ... }
    
  3. or download this
    package Signatures;
    
    ...
            }
        }
    }
    
  4. or download this
    #!perl -l
    
    ...
    sub foo ($a, $b) { print $a; print $b }
    
    use Signatures;