From dcf9396be2736f21512e0d1bd7f47716fc909fa7 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 11 Dec 2015 22:36:31 -0500 Subject: [PATCH] Added a note about global table --- runtime.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/runtime.c b/runtime.c index 76f20af9..04636296 100644 --- a/runtime.c +++ b/runtime.c @@ -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) {