Help for this page

Select Code to Download


  1. or download this
      my @fields = qw( name state age );
    
  2. or download this
      @identity{ @fields } = qw( billy colorado 21 );
    
  3. or download this
      @identity{ qw/ name  state    age / } = 
                 qw/ billy colorado 21 /;
    
  4. or download this
    my %identity = (
      name  => 'billy',
      state => 'colorado',
      age   => 21,
    );
    
  5. or download this
    my %identity = qw/
      name  billy
      state colorado
      age   21
    /;