P
Peng Yu
I could use [] to define a reference to an anonymous.
$aref=[1, 2, 3];
Is there a way to define a reference to anonymous scalar instead of
having to give the scalar a name first ('x' in the following example)?
$x=10;
$y=\$x;
$aref=[1, 2, 3];
Is there a way to define a reference to anonymous scalar instead of
having to give the scalar a name first ('x' in the following example)?
$x=10;
$y=\$x;