home | O'Reilly's CD bookshelfs | FreeBSD | Linux | Cisco | Cisco Exam  


Book HomeJava and XSLTSearch this book

8.24. base

Provides a shortcut for setting up @ISA. You can say:

use base qw(A B);

instead of:

BEGIN {
    require Foo;
    require Bar;
    push @ISA, qw(Foo Bar);
}


Library Navigation Links

Copyright © 2002 O'Reilly & Associates. All rights reserved.