Method code for $english_lib.indef_article()

[Turn on line numbering]
arg word;

if (word[1] in "aeiou" && !.vowel_exception(word) || .nonvowel_exception(word))
    return "an";
else
    return "a";

["// Created 11-Nov-1996 as a part of ColdCore, see: @help Credit"]

the Cold Dark