1#!/perl
2
3use strict;
4use warnings;
5
6use MyModule;
7
8my $x = "Foo";
9
10MyModule::function();
11
12print "In Main File.\n";
13
141;
15