in reply to Can't retrieve with storable
So, you're assigning an array reference to @array2. You can do either:
or@array2 = @{retrieve("file")} ...
See perlref for more info about references.my $aref = retrieve("file") or die "Cannot retrieve\n"; print @$aref;
|
|---|