| http://www.w3.org/ns/prov#value | - If you want an array reference, the reference itself is a scalar, and the thing you are pulling out is also a scalar because he is all you can put into arrays (which is why complex data structures are arrays or hashes with references to other arrays or hashes inside). $stateref = \@states; $stateref->[0] eq 'Canada'; $other_ref = [qw(manitoba vancouver tiajuana)]; @array_again = @$stateref; @array
|