Help for this page

Select Code to Download


  1. or download this
    $ perl -le'print "something" if undef'
    $
    ...
    $ perl -le 'if (undef) {print "something"} else {print "nothing"}'
    nothing
    $