Help for this page

Select Code to Download


  1. or download this
    {
      local @ARGV = ("Two", "Parameters");
      do "other_script.pl";
    }
    #here other_script's execution is done
    
  2. or download this
    {
      local @ARGV = ();
      do "other_script.pl" or die "Other script failed: $@";
    }