NAME
last - use the last loadable module in a list
SYNOPSIS
use last 'Foo', 'Bar', 'Baz';
DESCRIPTION
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
AUTHOR
Daniel Muey, http://drmuey.com/cpan_contact.pl
COPYRIGHT AND LICENSE
Copyright (C) 2007 by Daniel Muey
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.