#! /usr/bin/perl use strict; # Example of launching a perl script from within another script my $v1="Hello"; my $v2="There"; # I do know that the following statement will not produce the desired result. system ("perl launch_child.pl"); #### print "$v1\n"; print "$v2\n";