package Bool;
use vars qw(@ISA @EXPORT);

use Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(TRUE FALSE);

sub TRUE { 1 }
sub FALSE { 0 }
