# parent.pl#!/usr/bin/perluse warnings;use strict;my $text = "This is the parent";require 'child.pl';print "$text \n"; # produces "This is the parent"