saintmike has asked for the wisdom of the Perl Monks concerning the following question:
For example, calling
in a module will result in $file holding something like C:/perl/Mytest.pm (note: forward slashes) while a call tomy ($package, $file, $line) = caller();
will returnFile::Spec->catfile("C:", "perl", "MyTest.pm")
(note: backslashes). This is quite confusing. I guess that either sticking to backslashes or slashes would be OK, but mixing them is definitely wrong.C:\perl\MyTest.pm
Anyone know where to complain about this?
|
|---|