diff options
-rw-r--r-- | hyperquirks.lisp | 3 |
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)))) |