in reply to Re^5: My questions: new to perl
in thread My questions: new to perl
Did you deliberately misquote me? I specifically said version 5.12 of the interpreter wasn't sufficient.Did you mean you found a convoluted way (which I did not understand) to describe use 5.012;? If you meant that, why didn't you say so?Since 5.10, Perl has been changing in backwards incompatible ways. To get the latest version of the language, you need to request it using use 5.010; or similar.
Not that I agree use 5.YYY; switches to different versions of the language. Or that without using use 5.XXX; you won't be getting any of the latest version. *Most* changes of the language you'll get with, or without use 5.XXX. (Smart match for instance, all of the regexp changes, new versions of Unicode, etc).
Either you didn't express yourself properly, or you just advocated that strict var checks be moved to the linter.First of all, strictness checks aren't warnings. Second, due to exporting, one actually needs to run code to know what's being exported - and hence whether strict vars will complain or not.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: My questions: new to perl
by ikegami (Patriarch) on Mar 14, 2011 at 22:09 UTC | |
by JavaFan (Canon) on Mar 15, 2011 at 00:34 UTC | |
by ikegami (Patriarch) on Mar 15, 2011 at 19:21 UTC |