1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#!./perl
#
# test the logical operators '&&', '||', '!', 'and', 'or', 'not'
#
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require './test.pl';
}
plan tests => 17;
for my $i (undef, 0 .. 2, "", "0 but true") {
my $true = 1;
my $false = 0;
for my $j (undef, 0 .. 2, "", "0 but true") {
$true &&= !(
((!$i || !$j) != !($i && $j))
or (!($i || $j) != (!$i && !$j))
or (!!($i || $j) != !(!$i && !$j))
or (!(!$i || !$j) != !!($i && $j))
);
$false ||= (
((!$i || !$j) == !!($i && $j))
and (!!($i || $j) == (!$i && !$j))
and ((!$i || $j) == ($i && !$j))
and (($i || !$j) != (!$i && $j))
);
}
my $m = ! defined $i ? 'undef'
: $i eq '' ? 'empty string'
: $i;
ok( $true, "true: $m");
ok( ! $false, "false: $m");
}
my $i = 0;
(($i ||= 1) &&= 3) += 4;
is( $i, 7, '||=, &&=');
my ($x, $y) = (1, 8);
$i = !$x || $y;
is( $i, 8, 'negation precedence with ||' );
++$y;
$i = !$x || !$x || !$x || $y;
is( $i, 9, 'negation precedence with ||, multiple operands' );
$x = 0;
++$y;
$i = !$x && $y;
is( $i, 10, 'negation precedence with &&' );
++$y;
$i = !$x && !$x && !$x && $y;
is( $i, 11, 'negation precedence with &&, multiple operands' );
|