mirror of
				https://github.com/pragma-/pbot.git
				synced 2025-10-31 14:47:27 +01:00 
			
		
		
		
	 9b93a33acf
			
		
	
	
		9b93a33acf
		
	
	
	
	
		
			
			- show return type if _Noreturn function has type other than void - improve translation of function body - replace "Let `i` be an int" with "Declare `i` as an int"
		
			
				
	
	
		
			21 lines
		
	
	
		
			304 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			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 => 703,
 | |
|   BUILD_DATE     => "2014-07-04",
 | |
| };
 | |
| 
 | |
| 1;
 |