summaryrefslogtreecommitdiff
path: root/hyperquirks.lisp
diff options
context:
space:
mode:
authorcolin <colin@cicadas.surf>2023-03-10 06:48:40 -0800
committercolin <colin@cicadas.surf>2023-03-10 06:48:40 -0800
commit47d29ce07a4ab65004a68cc46f22f006d2e87312 (patch)
treefffa4d7acffbf2fa56005c04aed947938f43237c /hyperquirks.lisp
parent92cd04b4242dd8cf47237569a662a6791de0360b (diff)
better docstring for with-env
Diffstat (limited to 'hyperquirks.lisp')
-rw-r--r--hyperquirks.lisp3
1 files changed, 2 insertions, 1 deletions
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))))