print "hello" if 1; # prints hello print "hello" if 0; # doesn't print anything print "hello" if "1"; # prints hello again print "hello" if "0"; # Useless use of a constant in void context at ./test.pl line 3.