Added a note about global table

This commit is contained in:
Justin Ethier 2015-12-11 22:36:31 -05:00
parent 84d74409cb
commit dcf9396be2

View file

@ -277,7 +277,9 @@ object find_or_add_symbol(const char *name){
/* END symbol table */
/* Global table */
/* Global table
A list is appropriate for this table because the only time
we use it is to iterate over all the globals... */
list global_table = nil;
void add_global(object *glo) {