Hi all I installed parrot in this way:
$ svn co https://svn.perl.org/parrot/trunk parrot $ cd parrot $ perl Configure.pl; make $ cd languages/perl6/; make perl6
Then I took an example of class from wiki http://en.wikipedia.org/wiki/Perl_6. Here is code:
#!/home/stas/perl/parrot/languages/perl6/perl6 class Point is rw { has $.x; has $.y; }
When I try to execute this script I get:
Attempt to inherit from non-existent parent class current instr.: 'die' pc 12249 (src/gen_builtins.pir:7489) called from Sub 'trait_auxiliary:is' pc 15862 (src/gen_builtins.pir:99 +27) called from Sub '_block13' pc 122 (EVAL_12:47) called from Sub 'parrot;PCT;HLLCompiler;evalpmc' pc 804 (src/PCT/HLLCo +mpiler.pir:468) called from Sub 'parrot;PCT;HLLCompiler;compile' pc 434 (src/PCT/HLLCo +mpiler.pir:303) called from Sub 'parrot;PCT;HLLCompiler;eval' pc 836 (src/PCT/HLLCompi +ler.pir:493) called from Sub 'parrot;PCT;HLLCompiler;evalfiles' pc 1201 (src/PCT/HL +LCompiler.pir:667) called from Sub 'parrot;PCT;HLLCompiler;command_line' pc 1380 (src/PCT +/HLLCompiler.pir:756) called from Sub 'parrot;Perl6;Compiler;main' pc 16140 (perl6.pir:168)
Where is problem? May be it's not implemented yet... Thanks

In reply to Perl 6 class by Stanislav

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.