Enumeration elements are typically specified by their name, as in
ENUMERATION: example first-elt second-elt ;
but they can also be specified using an array. The second element of this array is the value assigned to the enum element, and is used as the counter that subsiquent elements increment from
The third element of the array, if present, must be a quotation. It defines how subsiquent increments are handled. By default, incrementation means that 1 is added to the counter to get the value of the next element. This quotation changes that definition.
Despite their name, enumeration values do not just have to be numbers, although if these values don't support math operations, you'll need to define a custom incrementation quotation and starting value.