in reply to Re: How can I differentiate between 0 and whitespace in Perl?
in thread How can I differentiate between 0 and whitespace in Perl?
Side note: I'd use 5.010; instead of use feature ":5.10";. The net effect is the same, but the innocent/inexperienced user of an older version of Perl will probably appreciate a clear message indicating what the problem is, i.e.
$ perl -M5.010 -e1 Perl v5.10.0 required--this is only v5.8.8, stopped at ... vs. $ perl -Mfeature=:5.10 -e1 Can't locate feature.pm in @INC (@INC contains: ...
with no mention of 5.10 in the latter.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How can I differentiate between 0 and whitespace in Perl?
by codeacrobat (Chaplain) on Apr 19, 2009 at 14:40 UTC | |
|
Re^3: How can I differentiate between 0 and whitespace in Perl?
by Anonymous Monk on Apr 19, 2009 at 12:43 UTC | |
by almut (Canon) on Apr 19, 2009 at 13:02 UTC |