in reply to difference between my and local

Hi

#!/usr/local/bin/perl + our $var = 10; + { local $var = 5; print "in var :$var:\n"; } + print "out var :$var:\n";
Please try the aboce code.

Then create a variable with my scope. try to localise the Variable You will find the difference.

"Keep pouring your ideas"