[I6] LanguageNumbers?

Hi all,
Does anyone know what LanguageNumbers is used for? As it stands (correct me if I’m wrong)

No idea why it should be given!

  • I can’t seem to access it: LanguageNumbers-> or LanguageNumbers–>, 2*n or n, all that comes out of “print (string) LanguageNumbers->n” is garbage…

What am I missing? Thanks!

This is an array of dict words (not strings) and the integers they map to. It’s used by the NumberWord() function in parserm.h. (In 6/11 anyhow. Haven’t looked at 6/12.)

Since it is a table, you access it with LanguageNumbers–>N, where N ranges from 1 to LanguageNumbers–>0.

To print a dict word, use “print (address) foo”.

The usage is the same in 6/12.

Thanks a lot, as always! Github’s search function had overlooked NumberWord() :slight_smile: