# create some basic data
$part = 'sparkplug';
@inventory = ('batteries', 'fluids', 'bolts');
%lunch =
( monday => 'soup', tuesday => 'sandwich' );
# now create references to this data
$ref_part = \$part;
$ref_inventory = \@inventory;
$ref_lunch = \%lunch;
|