Hi, Racket Discourse.
I have a macro that controls its internal state via a syntax-parameter
which the user toggles via a mnemonic phrase in the macro-body to either on or off over the course of its expansion.
Now, this is never exposed beyond the mnemonic phrase, so no provide
; therefore, my question: is the parameter a good fit for the situation or should I be using a different sort of control mechanism?
I am very fond of using regular parameters--sometimes too much. The code works, no problem, but is it the right hammer for this nail?