Questions tagged [perl5.6]

Perl5.6 refers to questions about that particular version of Perl

Tag questions with this tag if you have issues with this particular version of perl. Version 5.6 was released on March 22, 2000

For further info on 5.6.0

2 questions
1
vote
1 answer

Unable to print after while loop in perl

BEGIN { use FindBin; $scriptsDir = $FindBin::RealBin; } sub print_log { ($log, $msg) = ($_[0], $_[1]); print $log $msg; } $opt_rh_gsr = "path_to_file"; open(FO, "$opt_rh_gsr") || die "-F-: Can not open file \n"; while() { …
1
vote
3 answers

Would installing Perl 5.8.x or 5.10.x make a big impact on how my code runs if it was developed in 5.6.x?

What are the impacts (If any) by developing code in Perl 5.6.1 but running the code in Perl 5.8.x or 5.10.x? I'm using these modules: (For Linux) HTTP::Request HTTP::Response LWP::UserAgent Unicode::String XML::DOM DateTime::Format::DateManip (For…
Phill Pafford
  • 83,471
  • 91
  • 263
  • 383