Method code for $english_lib._noun_plural()

[Turn off line numbering]
  1: arg string;
  2: var k;
  3: 
  4: anticipate_assignment();
  5: string = strsed(string, "^(a|an) +", "");
  6: if ((k = (| noun_exceptions[string] |)))
  7:     return k;
  8: return ._add_s(string);

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

Tlon