freebsd-ports/devel/p5-boolean/pkg-descr
Frederic Culot a36cc43ba5 - Update to 0.30 [1]
- Pet portlint(1) by changing tab into space in WWW link [1]
- Add LICENSE (Artistic 1 & GPL 1)

Changes:	http://search.cpan.org/dist/boolean/Changes
PR:		ports/178459 [1]
Submitted by:	Muhammad Moinur Rahman <5u623l20@gmail.com> (maintainer)
2013-05-13 12:57:18 +00:00

14 lines
378 B
Text

Most programming languages have a native "Boolean" data type. Perl
does not.
Perl has a simple and well known Truth System. The following scalar
values are false:
@false = (undef, 0, 0.0, '', '0');
Every other scalar value is true.
This module provides basic Boolean support, by defining two special
objects: "true" and "false".
WWW: http://search.cpan.org/dist/boolean/