Perl 6 Cool Perl 6 #15

Constant hash key lookups

We commonly use angles for constant-key hash lookups:

my %scores = < pmichaud 52   mäsak 95   PerlJam 78 >;

say %scores{'pmichaud'};    # hash lookup

say %scores{ <pmichaud> };  # same

say %scores<pmichaud>;      # same, Perl 6 shortcut
continued...
Copyright © 2010
http://www.pmichaud.com/2010/pres/