summaryrefslogtreecommitdiff
path: root/lib/version.pm
blob: 9443a6ac9908cb8354940df3761dbbabf7f5a77f (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.50;

$CLASS = 'version';

# Preloaded methods go here.

1;