Nifty perl trick I learned about today
Aug. 31st, 2010 06:34 pm![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Context was someone asking why
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).