* Jonathan Rockway <[EMAIL PROTECTED]> [2006-07-31 17:20]:
> This qualifies as a worst-practice, but you can use the
> "abbreviation" pragma:
> 
>   use abbreviation qw(Very::Long::ClassName::Here);
>   my $obj = V::L::CN::Here->new;        # same

Ugh. Use a sane module instead:

    use aliased 'Very::Long::ClassName::Here' => VLCNHere;

    my $obj = VLCNHere->new();

Regards,
-- 
#Aristotle
*AUTOLOAD=*_;sub _{s/(.*)::(.*)/print$2,(",$\/"," ")[defined wantarray]/e;$1};
&Just->another->Perl->hacker;

_______________________________________________
List: [email protected]
Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/

Reply via email to