aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/README.md b/README.md
index 70137c9..8020d04 100644
--- a/README.md
+++ b/README.md
@@ -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"