&&, ||, and !
#!/usr/bin/perl use warnings; print"Test one: ", 6 > 3 && 3 > 4, "\n"; print "Test two: ", 6 > 3 and 3 > 4, "\n";