And[ a, b ]
Finally, you can put a bunch of conditions in a list and do And @@ list.
This is true for any language I can think of.
E.g. in perl
open(my $fh, "<", "input.txt") or die "cannot open < input.txt: $!";
Finally, you can put a bunch of conditions in a list and do And @@ list.