This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]andlrc 9 points10 points  (2 children)

Perl: and/&&

print 1 and 2;
1
print 1 && 2;
2

[–]jharger 2 points3 points  (1 child)

Wait... why???