Another question: I made a REPL with the following code:
(include "../lib/objc#.scm")
(include "~~lib/_gambit#.scm")
(macro-readtable-bracket-keyword-set! ##main-readtable ':)
(##repl-debug-main)
Macros aren't available in the REPL (unless I included them from within the REPL). I understand what's going on, but not sure how to make it work.
I'm hoping I can compile macros so I don't need to count on the objc#.scm file being around at run time, but if not - ah well.
-Jason