BioBIKE
(IF-TRUE test      
      THEN statements
      [ELSE statements]

Example:
  (IF-TRUE (> (LENGTH-OF gene) 300)
      THEN (PROTEIN-OF gene)
      ELSE (INCREMENT small-genes)
           NIL)


          [If a given gene has a length greater than 300, then the corresponding protein is returned.
            Otherwise the variable containing the number of small genes is incremented, and NIL is returned]