diff options
author | colin <colin@cicadas.surf> | 2023-03-10 06:48:40 -0800 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2023-03-10 06:48:40 -0800 |
commit | 47d29ce07a4ab65004a68cc46f22f006d2e87312 (patch) | |
tree | fffa4d7acffbf2fa56005c04aed947938f43237c | |
parent | 92cd04b4242dd8cf47237569a662a6791de0360b (diff) |
better docstring for with-env
-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)))) |