Help for this page

Select Code to Download


  1. or download this
    my %hash = (
        'hi' => 'hello',
    ...
        'later' => 'gone',
    );
    print $hash{'all'};
    
  2. or download this
    my %hash = (
        'hi' => {'hello' => 'all'},
        'bye' => {'later' => 'gone'},
    );