Res facta quae tamen fingi potuit (
pauamma) wrote in
dw_dev_training2010-08-31 06:34 pm
Nifty perl trick I learned about today
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).

no subject