mirror of
https://git.freebsd.org/ports.git
synced 2025-05-07 03:16:44 -04:00
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
12 lines
335 B
Text
12 lines
335 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".
|