http://qs321.pair.com?node_id=703892


in reply to [Perl 6] Class Attributes

There's no "inherited attributes" in Perl 6. What you have is inherited accessors.

our $.attrib is actually the same as...

our $!attrib; # but it keeps the original name stored for introspecti +on... method attrib { $!attrib }
daniel

Replies are listed 'Best First'.
Re^2: [Perl 6] Class Attributes
by John M. Dlugosz (Monsignor) on Aug 13, 2008 at 01:40 UTC
    I know. So, what does "inherited" mean if there are no accessors? That's what S12 says.
      Can you please cut/paste the relevant text.
        Never mind, anonymous, $Larry fixed it.