Help for this page

Select Code to Download


  1. or download this
    sub printElement(\%$)
    {
    ...
    
       &printElement(\%hash, $key);
    
  2. or download this
    sub printElement
    {
    ...
    
       printElement( $key, %hash );
    
  3. or download this
    sub printElement
    {
    ...
    
       printElement( \%hash, $key );