This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update to the config boilerplates, by Jarkko
[perl5.git] / lib / version.pm
CommitLineData
c8d69e4a 1#!perl -w
a7ad731c
HS
2package version;
3
4use 5.005_03;
5use strict;
6
137d6fc0 7require Exporter;
137d6fc0 8use vars qw(@ISA $VERSION $CLASS @EXPORT);
a7ad731c 9
cb5772bb 10@ISA = qw(Exporter);
a7ad731c 11
137d6fc0
JP
12@EXPORT = qw(qv);
13
cb5772bb 14$VERSION = "0.48";
a7ad731c
HS
15
16$CLASS = 'version';
17
a7ad731c
HS
18# Preloaded methods go here.
19
201;