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 | |
by Anonymous Monk on Aug 15, 2008 at 07:49 UTC | |
by John M. Dlugosz (Monsignor) on Aug 15, 2008 at 09:36 UTC |
In Section
Seekers of Perl Wisdom