about summary refs log blame commit diff stats
path: root/chibi/giblang.scm
blob: cf024fdc74b8b315069aab25559d2e7a58d5f547 (plain) (tree)
1
2
                     
                       














                            
(import (scheme base)
        (scheme write))

(define consonants
  (list 
   "b" "c" "d" "f"
   "g" "h" "j" "k"
   "l" "m" "n" "p"
   "r" "s" "t" "v"
   "w" "z" "ch" "sh"
   "zh" "th"))

(define vowels
  (list 
    "a" "e" "i" "o" 
    "u" "y" "ee" "ai" "ae"))