in reply to Re^4: How to pass a variable to a subroutine
in thread How to pass a variable to a subroutine
Five problems unrelated to your question:
Try using
use Data::Dumper; local $Data::Dumper::Useqq = 1; local $Data::Dumper::Terse = 1; print("FOUND_FILE: ", Dumper($FOUND_FILE), "\n"); print("FN_SPLIT: ", Dumper($FN_SPLIT ), "\n");
There's probably leading or trailing spaces.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: How to pass a variable to a subroutine
by learningperl01 (Beadle) on Dec 06, 2008 at 23:13 UTC | |
by ikegami (Patriarch) on Dec 07, 2008 at 00:28 UTC | |
by Anonymous Monk on Dec 07, 2008 at 22:26 UTC |