package Name::Name; use 5.6.0; # Always specify the minimum Perl your code expects to work with. use strict; # Got this right. use warnings FATAL => 'all'; # If you're 5.6+, this catches a lot of silly mistakes. our $VERSION = '0.05'; # If you're 5.6+, this is a nicer way of writing that VERSION stuff. # MY CODE HERE 1; __END__ # Always put this here to tell you that there can never be any code after this.