From 47d29ce07a4ab65004a68cc46f22f006d2e87312 Mon Sep 17 00:00:00 2001 From: colin Date: Fri, 10 Mar 2023 06:48:40 -0800 Subject: better docstring for with-env --- hyperquirks.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hyperquirks.lisp b/hyperquirks.lisp index 8fdbe54..5be4485 100644 --- a/hyperquirks.lisp +++ b/hyperquirks.lisp @@ -13,7 +13,8 @@ EXAMPLE: (with-env ((\"VAR1\" (get-value-for-var)) (\"VAR2\" \"SOME_VAL\")) - (do-stuff-with-environment))" + (print (uiop:getenv \"VAR1\")) + (print (uiop:getenv \"VAR2\")))" (let ((bindings (loop :for binding :in bindings :collect (list* (gensym "VAR") (gensym "VAL") binding)))) -- cgit v1.2.3