You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

21 lines
301 B

package ksb::Version;
# Pretty much just records the program-wide version number...
use strict;
use warnings;
use v5.10;
our $VERSION = '1.16-pre2';
our $SCRIPT_VERSION = $VERSION;
use Exporter qw(import);
our @EXPORT = qw(scriptVersion);
sub scriptVersion()
{
return $SCRIPT_VERSION;
}
1;