// the $adjective $noun is a $noun static void ai_spec_theAdjectiveNoun(S s) { new Matches m; if "the * *" { S a = m.get(0), n = m.get(1); if (isAdjective(a) && isNoun(n)) ai_post(s, "is", a(n)); } }