Help for this page

Select Code to Download


  1. or download this
    Car
       Wheels=4
    ...
    Bike
       Wheels=2
       Color=Red
    
  2. or download this
    my %item = (
      Car => {
    ...
       Color => 'Red'
      },
     );
    
  3. or download this
    my %item = (
      Car => {
    ...
    
    print "Blue things: @{$attr{Color}{Blue}}\n";