Help for this page

Select Code to Download


  1. or download this
    $foo          ? do { bar($_) for 1..3;  }          :
    $baz eq $quux ? (warn, return -1)                  :
    $answer == 42 ? print "but what's the question?\n" :
        print "who knows\n";
    
  2. or download this
    $foo          ? do { bar($_) for 1..3;  }          :
    $baz eq $quux ? (warn, return -1)                  :
    $answer == 42 ? print "but what's the question?\n" :
    do { print "who knows\n" };