Help for this page

Select Code to Download


  1. or download this
    return $i == 1 ? 'red'
         : $i == 2 ? 'blue'
         : $i == 3 ? 'green'
         : $i == 4 ? 'yellow'
         :           'white';
    
  2. or download this
    return $i == 1 ? 'red': $i == 2 ? 'blue' : $i == 3 ? 'green'     : $i 
    +== 4 ? 'yellow' : 'white';
    
    # God forbid
    print "This is my very long string that I wish to print out to display
    + my message on the screen but only when I want it too!" if $i == 1;