3
0
mirror of https://github.com/pragma-/pbot.git synced 2026-02-11 11:58:02 +01:00
pbot/PBot/VERSION.pm
Pragmatic Software b8d2d0797e compiler_vm: Show output from program when using paste command
google search: Show "No results found" if no results found
c99std/c11std: Minor clean-up of output
2012-11-02 22:08:20 +00:00

21 lines
304 B
Perl

# File: VERSION.pm
# Author: pragma_
#
# Purpose: Keeps track of bot version.
# $Id$
package PBot::VERSION;
use strict;
use warnings;
# These are set automatically by the build/commit script
use constant {
BUILD_NAME => "PBot",
BUILD_REVISION => 391,
BUILD_DATE => "2012-11-02",
};
1;