void test(text a)
  if  a
  in array("orange", "kiwi", "poire", "prune"): print "oui"
  = "y":   print "oui"
  else
    print "non"
  /if
return

test("cerise")
test("n")
test("kiwi")
test("y")