artist has asked for the wisdom of the Perl Monks concerning the following question:
Case 2: (Corrct, No Error)use strict; use warnings; use File::BaseName;
Case 3: (InCorrect, Error)use strict; use warnings; use File::Basename;
Case 2 is correct, while case 1 and case 3 represents the modules that doesn't exist. Only case 3 gives the error, while case 1 should also give the error in my opinion. Of course, case 1 complains when a function is used such as $dir = dirname($fullpath);use strict; use warnings; use File::XBasename;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Case Insensitivity on Windows (done)
by tye (Sage) on Jul 18, 2003 at 18:52 UTC | |
|
Re: Case Insensitivity on Windows
by ChrisS (Monk) on Jul 18, 2003 at 18:16 UTC | |
|
Re: Case Insensitivity on Windows
by sgifford (Prior) on Jul 18, 2003 at 18:17 UTC |