last - use the last loadable module in a list


last documentation  | view source Contained in the last distribution.

Index


NAME

Top

last - use the last loadable module in a list

SYNOPSIS

Top

  use last 'Foo', 'Bar', 'Baz';

DESCRIPTION

Top

use() the last module in the given list

The SYNOPSIS example is exactly the same as doing:

  use first 'Baz', 'Bar', 'Foo';

In fact the list after 'use last' can contain the same things as first and the same variables are available for use after the call (only with the last:: name space instead of first:: of course)

Useful for when you have a list of modules that you could use that are in least desirable to most desireable order.

SEE ALSO

Top

first

AUTHOR

Top

Daniel Muey, http://drmuey.com/cpan_contact.pl

COPYRIGHT AND LICENSE

Top


last documentation  | view source Contained in the last distribution.