blob: 635994875c6fb0afa0ca9493302ca5da26990c94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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: https://metacpan.org/release/boolean
|