symboltable.h 198 B

1234567891011
  1. #include "scm.h"
  2. // the symbol table is an array
  3. // from symbol ref -> symbol name
  4. //
  5. // when interning a symbol it allocates
  6. // a copy and keeps it
  7. char* lookup(scm ref);
  8. scm intern(char *name);