Help for this page

Select Code to Download


  1. or download this
    my $address = {
                      Name    =>  'Bernd Dulfer',
    ...
                                  ]
                  };
    print 'Other name: ', $address->{Name}, "\n";
    
  2. or download this
    my %address = (
                      Name    =>  'Bernd Dulfer',
    ...
                                  ]
                  );
    print 'Other name: ', %address->{Name}, "\n";
    
  3. or download this
    syntax error at ./sixth.pl line 14, near "$address{Bernd"
    Execution of ./sixth.pl aborted due to compilation errors.