diff options
author | Colin Okay <okay@toyful.space> | 2021-02-13 13:03:40 -0600 |
---|---|---|
committer | Colin Okay <okay@toyful.space> | 2021-02-13 13:03:40 -0600 |
commit | d6a5e852e3b277f7e5177206c021ee548ce1fc54 (patch) | |
tree | 42400ccbb7fe242212e72d8d298da17271fb3d6b | |
parent | 41de2fbe5461243c25c9a9c8aa55af273971fecc (diff) |
updated readme
-rw-r--r-- | README.md | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -713,10 +713,8 @@ And here's a quick demo of its use: ``` lisp -;; the map! is to turn vectors back into strings for ease of viewing -(for perm (map! (lambda (x) (concatenate 'string x)) - (perms "abcd")) - (print perm)) +(for perm (perms "abcd") + (print (concatenate 'string perm))) "abcd" "bacd" |