Hi gambit list!
Is there a way to get some dynamic scoping in gambit? I tried to use the make-parameter and parameterize forms, but I guess I didn't understood them because it didn't work out...
I'd like to do something like:
(define (f) (dynamic-let ((x)) x))
(let ((x 10)) (f))
--> 10
such that x gets defined dynamically? How can I use make-parameter and parameterize to do such a thing?
Thank you!
David