Help for this page

Select Code to Download


  1. or download this
    print "that's the answer" if $answer == 42;
    
  2. or download this
    if ($answer == 42)
       print "that's the answer";
    else
       print "you're a jerk.  a complete kneebiter.";
    
  3. or download this
    print "that's the answer" if $answer == 42;
    print "you're a jerk.  a complete kneebiter." unless $answer == 42;