summaryrefslogtreecommitdiff
path: root/lib/version.pm
blob: 5af78ef5ca4a61ca5b66398e24203f7c702c9716 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!perl -w
package version;

use 5.005_03;
use strict;

require Exporter;
use vars qw(@ISA $VERSION $CLASS @EXPORT);

@ISA = qw(Exporter);

@EXPORT = qw(qv);

$VERSION = 0.53;

$CLASS = 'version';

# Preloaded methods go here.

1;