/* if input (does every word contain an "e"?) and (X is a typical set of words) and (L = parseList(X)) then say (yesNo(containsIC(l, "e"))) */ static S rule_everyWordContains() { new Matches m; ai_checkInput_match3("does every word contain an *?", m); S c = $1; S x = ai_text("$X", "is", "a typical set of words"); L l = parseList(x); ret yesNo(allContainIC(l, c)); }