BioBIKE
(SAME item1 item2)
Example:
  (LOOP FOR gene IN (GENES-OF S6803)
        AS name = (GET-ELEMENT gene-name FROM gene)
        WHEN (SAME name "DnaA")
        RETURN gene)
[Consider each gene in all the genes of Synechocystis PCC 6803. Extract the gene name of that gene. When the gene name is "DnaA" or "dnaA" (i.e., disregarding case), then exit the loop, returning the gene.]