Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    
    getInfo($scalar,%hash);
    __END__
    
  2. or download this
    getInfo($scalar,%hash);
    
  3. or download this
    my ( $thescalar, %thehash ) = @_;
    
  4. or download this
    sub getInfo {
      my ( $thescalar, $thehashref ) = @_;
    ...
    }
    
    getInfo( $scalar, \%hash );
    
  5. or download this
    sub getInfo {
      my ( $thescalar, %thehash ) = @_;
    ...
    }
    
    getInfo( $scalar, %hash );