Help for this page

Select Code to Download


  1. or download this
    if (a != b)
         if (a != c)
              if (a != d)
    ...
              endif
         endif
    endif
    
  2. or download this
    next if a == b;
    next if a == c;
    next if a == d;
    ...
    
  3. or download this
    if (a == b) goto next_record;
    if (a == c) goto next_record;
    ...