Note! This site is about Perl 6.
If you are looking for a solution for the current production version of Perl 5, please check out
the Perl 5 tutorial.
tutorial/p526/hashes.p6
#!/usr/bin/env perl6
use v6;
my %h = ("Perl", "Larry", "Python", "Guido"); # creates hash as in Perl5
# Perl5: hash element
say %h{"Perl"}; # accessing hash elements is simialr but the sigil remains %
# Perl5: hash key without quotes
say %h<Perl>; # if you want to leave out the quotation marks "" (was $h{Perl} in Perl5)
# Perl5: exists
%h.exists("Perl"); # checks if key exists (formally the exists function)
defined(%h<Perl>); # checks if the value of the give key is defined
# Perl5: keys
keys %h; # returns a list of keys just as in Perl5
%h.keys; # also works
# Perl5: values
# Perl5: each
# %h.kv
for %h.kv -> $key, $value {
say "$key => $value";
}
The Perl 6 Tricks and Treats newsletter has been around for a while.
If you are interested to get special notification when there is new content
on this site, it is the best way to keep track:
This is a newsletter temporarily running on my personal site (szabgab.com) using Mailman,
till I implement an alternative system in Perl 6.
Written by Gabor Szabo