From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
1234567891011121314 #!/perluse strict;use warnings;use MyModule;my $x = "Foo";MyModule::function();print "In Main File.\n";1;
#!/perl
use
strict;
warnings;
MyModule;
my
$x
=
"Foo"
;
MyModule::function();
print
"In Main File.\n"
1;