in reply to Reference Example
Create a reference to an anonymous hash like so:%animals = ('donald'=>'duck', 'mickey'=>'mouse', 'cheshire'=>'cat'); $fer = \%animals;
This will accomplish the same thing.$fer = {'donald'=>'duck', 'mickey'=>'mouse', 'cheshire'=>'cat'};
|
|---|