Multidimensional hashes
examples/hash/multi.p6
#!/usr/bin/env perl6
use v6;
my %xml;
%xml<person>[0] = 'Foo';
%xml<person>[1] = 'Bar';
say %xml.perl;
Output
examples/hash/multi.p6.out
("person" => ["Foo", "Bar"]).hash
Table of Contents
Comments
In the comments, please wrap your code snippets within <pre> </pre> tags and use spaces for indentation.
comments powered by