NAME Class::Accessor::Lite - a minimalistic variant of Class::Accessor SYNOPSIS package MyPackage; use Class::Accessor::Lite ( new => 1, rw => [ qw(foo bar) ], ro => [ qw(baz) ], wo => [ qw(hoge) ], ); DESCRIPTION The module is a variant of Class::Accessor. It is fast and requires less typing, has no dependencies to other modules, and does not mess up the @ISA. THE USE STATEMENT The use statement