This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlapi: Place in dictionary sort order
[perl5.git] / lib / perl5db / t / MyModule.pm
CommitLineData
076b743f
SF
1package MyModule;
2
3use strict;
4use warnings;
5
6use vars qw($var);
7
8$var = "Bar";
9
10sub function
11{
12 print "In MyModule.\n";
13}
14
151;