is there anyway i can obtain dynamic scoping in gambit? lexically scoping is really cool, and I want it as the default behavior; i just want the ability to go:<br><br>(define (foo x) (* x 2))<br><br>(define (g x) (foo x))<br>
<br>(pp (list (g 1) (dynamic-let ( (foo (lambda (x) (* x 3)))) (g 1))))<br><br>to get me:<br><br>(2 3)<br><br>