in reply to Does Perl 6 reject a Perl 5 require?

Theoretically that should mark the lexical scope as being Perl 5 code. I don't think any Perl 6 implementations support it yet though.

use Moops; class Cow :rw { has name => (default => 'Ermintrude') }; say Cow->new->name
  • Comment on Re: Does Perl 6 reject a Perl 5 require?