perl -e 'if(0&& 0||1){print"hello\n"}' #### hello #### perl -e 'if(0and 0||1){print"hello\n"}'
## hello ##
## perl -e 'if(0and 0||1){print"hello\n"}'