Next | The Identity Function | 17 |
The & and * Operators
Refresher for Perl programmers
ptr = &foo gets the address of foo
We say that ptr points to foo
*ptr recovers the value of foo
Something like references, only more dangerous
Next | Copyright © 2001 M. J. Dominus |