Help for this page

Select Code to Download


  1. or download this
    # Very clear to a clear thinker
    
    ...
    while ( my ( $key, $value ) = each %hash ){
        say "key: $key, value: $value";
    }
    
  2. or download this
    # More captivating to your average thinker
    
    ...
        say "Name: $name, Species: $species";
    }