| pauamma ( @ 2010-08-31 06:34 pm UTC |
| Entry tags: | perl, tips |
print "Hello, world!\n" && die;doesn't output anything. Someone replied with a nifty trick to help figure this out:
perl -MO=Deparse -e 'print "Hello, world!\n" && die;'(go ahead and try it in your Dreamhack).