home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume10 / ifp / part01 / fproot / demo / Vowel < prev   
Encoding:
Text File  |  1987-07-05  |  231 b   |  14 lines

  1. (*
  2.  * Determine if a letter is a vowel.
  3.  *
  4.  * E.g.
  5.  *      A : Vowel -> t
  6.  *      u : Vowel -> t
  7.  *      R : Vowel -> f
  8.  *
  9.  * This function is used by function PigLatin.
  10.  *)
  11.  
  12. DEF Vowel AS 
  13.    [#<a e i o u A E I O U>, id] | member;
  14.