Fix example in readme
forgot parens.
This commit is contained in:
parent
f6d22792b0
commit
aa77fef2ad
1 changed files with 2 additions and 2 deletions
|
@ -79,9 +79,9 @@ Due to clause reordering, positional updates are not supported. If you want to u
|
|||
|
||||
``` scheme
|
||||
(loop ((:for a (in-list 1 2 3)
|
||||
(:bind b (expensive-operation1 a))
|
||||
(:bind (b (expensive-operation1 a)))
|
||||
(:when (test? b))
|
||||
(:bind c (expensive-operation2 b))
|
||||
(:bind (c (expensive-operation2 b)))
|
||||
(:when test2? c)
|
||||
(:acc acc (listing c))))
|
||||
=> acc)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue