Re: Use vs Require with version number

2015-03-05 Thread SSC_perl
On Mar 4, 2015, at 8:15 PM, Brandon McCaig wrote: > > That could matter in rare, silly cases. In most cases, it > wouldn't really matter (usually we "require" modules and assert > versions at the beginning of a program or module before anything > else is actually done). That explains it.

Re: Use vs Require with version number

2015-03-05 Thread Kent Fredric
On 5 March 2015 at 17:15, Brandon McCaig wrote: > Uri means that use is > effectively requiring the module with a BEGIN block. That means > that it will execute before any other code that isn't in a BEGIN > block. > It may also be worth mentioning that "BEGIN" is actually a sub. A special sub t