Hi all, I know this is not the place, but what is "$$" for in perl, a line reads $str = "this" ."$$ADS{'name'}"; Thanks.
Maulin Vasavada
Ranch Hand
Joined: Nov 04, 2001
Posts: 1865
posted
0
hi Allan, $varname is a value of variable with 'varname' right? so $$varname is kind of pointer to a pointer thing in C you know.. first it will get value for $varname then it will apply another $ on that value which would mean value of a variable with name "value of varname".. here is simple program i ran,