Help for this page

Select Code to Download


  1. or download this
    function();
    
    sub function {
       print $hash{'status'};
    }
    
  2. or download this
    function( $hash{'status'} );
    
    ...
      my( $status ) = @_;
      print $status;
    }