I respond more directly to your post below but first:

This site (PerlMonks) is almost entirely about Perl 5. You're in the right place if your focus is using or developing Perl 5. In contrast, for now, Perl 6 users and developers are generally better off visiting the IRC channel #perl6 on freenode. On #perl6 you'll find p6 experts happy to help beginners most hours of the day. Start by verifying that you have an up to date Perl 6 (#perl6ers will show you how to check) and then explain to #perl6 what you want to do with Perl 6 long term and what you are trying to do with the code you've quoted.


In case it helps I'll cover a couple things here at PerlMonks. Running your code as it is with a current Rakudo Perl 6 errors out with:

SORRY!
===
Error while compiling
Malformed initializer at ------> $aa = ;

Fixing that and recompiling gives:

invoke() not implemented in class 'X'

So, what is X? To see the gist of something use .gist:

.print for X.gist

which returns:

(X)

This is the gist of package X i.e. not what you meant. So, time to visit #perl6. :)

Hth.


In reply to Re^2: Perl 6, arrays, hashes, subroutines & basic file IO by raiph
in thread Re: Perl 6, arrays, hashes, subroutines & basic file IO by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.