Simulated External Functions

string consolidate(int, string);

When given an integer and a string, will return the plural form of the string for the given integer.

Examples:
  consolidate(2, "bear")   returns   "two bears"
  consolidate(1, "cat")    returns   "cat"
  consolidate(13, "dog")   returns   "many dogs"

file: /doc/sefun/numbers.c
