RosettaCodeData/Task/Boolean-values/Perl/boolean-values-3.pl

6 lines
264 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
print (7 && 2); # 2, rather than 1(true)
print (2 && 7); # 7, rather than 1(true)
print (7 xor 2); # empty string, rather than 0(false)
print ('apples' && 'pears'); # pears, rather than 1(true)
print ('apples' xor 'pears'); # empty string, rather than 0(false)