Help for this page

Select Code to Download


  1. or download this
    @alex = ( fred => 44, 'joe' => 2983, mike => -94 );
    %heather = ('This', 'will', 'actually', 'work');
    ...
    $heather{'giggles'} = 870;
    @alex = %heather;
    print "D: @alex\n";
    
  2. or download this
    C: [44] [-94] [('joe')] []
    D: giggles 870 joe 2983 dingbat 33 mike -94 fred 44