package Nothing;
sub doNothing
{
print "This package does nothing!\n";
}
1;
#########################################
#!/usr/local/bin/perl -w
# Use the package nothing.
require "Nothing.pl";
# Call the subroutine doNothing inside the package Nothing.
Nothing::doNothing();