LanX-+2008-08-19 20:58:29--mit diesen Symrefs kannste IMHO nur auf Scalare zugreifen Code (perl): (dl ) 1 2 3 4 @x=(1,2,3); $y='x[0]'; print $$y; läuft nicht!
1 2 3 4
@x=(1,2,3); $y='x[0]'; print $$y;
1 2 3
@x=(1,2,3); $y='x'; print $$y[2]; # Symrefs sind trotzdem BÖSE!