Help for this page

Select Code to Download


  1. or download this
    my %cells = map { ... };
    
  2. or download this
    my %cells = qw(key1 val1 key2 val2 key3 val3);
    
  3. or download this
    my %cells = qw(foo one bar two baz three);
    my %cells = (foo => "one", bar => "two", baz => "three");