Christopher Howard <christopher.how...@qlfiles.net> writes:

> I was just curious: Is there something you can pass to eval procedure
> that using the local environment? e.g.,
>
> (let ((foo 12)) (eval 'foo (this-environment)))
>
> to get it to return 12.

No.  But there is

(use-modules (ice-9 local-eval))

(let ((foo 12)) (local-eval 'foo (the-environment)))

-- 
David Kastrup


Reply via email to