Help for this page

Select Code to Download


  1. or download this
    sub show {
        my $line = $_;
        ...
    }
    
  2. or download this
    sub show {
        my $line = shift;
    
  3. or download this
    sub show {
        my ($line) = @_;
    
  4. or download this
    sub show {
        my $line = $_[0];