in reply to Perl Modules with 2 or more classes
package Foo; use Any::Moose; has 'x' => (is => 'rw', isa => 'Int'); has 'y' => (is => 'rw', isa => 'Int'); no Any::Moose; package Bar; use Any::Moose; has 'x' => (is => 'rw', isa => 'Int'); has 'y' => (is => 'rw', isa => 'Int'); has 'z' => (is => 'rw', isa => 'Int'); no Any::Moose;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl Modules with 2 or more classes
by zwon (Abbot) on Oct 19, 2011 at 14:30 UTC |