in reply to Get values from anonymous hash?

Is this what you are looking for?
use Modern::Perl; my @things = qw /one two three one four four five six two seven/; say join ' - ', keys %{{map {$_, 1} @things}};
output: three - six - five - one - seven - two - four

CountZero

A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

Replies are listed 'Best First'.
Re^2: Get values from anonymous hash?
by mseabrook (Beadle) on Aug 17, 2011 at 20:02 UTC
    Yep, that works, thanks. I needed to wrap the anonymous hash in another set of curly brackets before trying to de-reference it.