in reply to Calling perl function from another perl script with different Active perl versions
#!perl5.6 $result = `D:/Perl/bin/perl D:/sample_program/p5.24.pl 25 10`; [download]
#!perl5.24 my ($x, $y) = @ARGV; print $x * $y; [download]