in reply to Re: Learning to *really* love references
in thread Learning to *really* love references

While afaik you cant alias scalar directly you can do aliasing with arrays and hashes using Array::RefElem and even do aliasing with arrays without anything more than the following utility sub:
sub alias_array { \@_ }
But you are right, perl needs better ways to define and manipulate aliases.

Yves / DeMerphq
---
Writing a good benchmark isnt as easy as it might look.