Hi,
I want to know how can we limit the scope of require function in perl file. I have a perl file and it's importing another file in it using require like this:
# main file is ABC.pl
require "abc.pl"
...
...
I perform some operations and now I want to limit the scope of require...Like if we have an open file function in perl then we also have the corresponding close function in perl. What is the corresponding function in perl for require.
Thanks