Help for this page

Select Code to Download


  1. or download this
          if( state equals A) { Take action1 }
       elsif( state equals B) { Take action2 }
       else                   { Take action3 }
    
  2. or download this
        unless( state equals A ) { Take action1 }
    elsunless( state equals B ) { Take action2 }
    else                        { Take action3 }
    
  3. or download this
       unless( state equals A) { Take action1 }
       elsif ( state equals A) { Take action2 }
       else                    { Take action3 }
    
  4. or download this
       unless( state equals A) { Take action1 }
       else                    { Take action2 }