Can you assign multiple variable names to a single data structure? print "What I want" if (\@name1 eq \@name2);
How can I get What I want?
Clarification:
I want to avoid copying the data, and avoid using de-referencing notation to address the data. If I push something onto @name1, I want it to be avaiable on the tail of @name2.