Hi, I didn't see a help-guile list, I hope this isn't out of place
I'm trying to lexically bind a macro to a lexically bound transformer procedure
(let ((outer (lambda (x) #''())))
(let-syntax ((inner outer))
inner))
This is producing an error
"reference to identifier outside its scope in form outer"
My goal is to load external macros without any top-level definitions
I don't know if the way the macro expander works will allow this
Any help appreciated, thanks!
