From bdff8e31c9e09568faa48b87ab7c194201d44f30 Mon Sep 17 00:00:00 2001 From: Sergiu Ivanov Date: Wed, 19 Feb 2020 22:51:49 +0100 Subject: [PATCH] eval-with: Explicitly say that the evaluation happens in a fresh namespace. --- utils.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils.rkt b/utils.rkt index 9fc5237..b10f477 100644 --- a/utils.rkt +++ b/utils.rkt @@ -81,8 +81,8 @@ x)))) ;;; Temporarily injects the mappings from the given hash table as -;;; bindings in the current namespace and then evaluates the -;;; expression. +;;; bindings in a namespace including racket/base and then evaluates +;;; the expression. ;;; ;;; > (let ([ht #hash((a . 1) (b . 1))]) ;;; (eval-with ht '(+ b a 1)))