http://www.perlmonks.org?node_id=447881


in reply to Re^2: The Concept of References
in thread The Concept of References

One could argue that a pointer in C, e.g. to a struct tm, knows what it points to, so that you can write:
struct tm *p = &data; localtime(p); printf("Year: %d\n", p->tm_year);
which, assuming you have a hash filled with the very same parameters, resembles $p->{'tm_year'} very much.

Flavio (perl -e "print(scalar(reverse('ti.xittelop@oivalf')))")

Don't fool yourself.