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
In Section
Seekers of Perl Wisdom