DB<1> l
4==> $part = 'sparkplug';
5: @inventory = ('batteries', 'fluids', 'bolts');
6: %lunch =
7 ( monday => 'soup', tuesday => 'sandwich' );
8
9 # now create references to this data
10: $ref_part = \$part;
11: $ref_inventory = \@inventory;
12: $ref_lunch = \%lunch;
13
b 11