Skip to content

Commit

Permalink
Merge pull request #36 from laarc/0014-readme-minor-fix
Browse files Browse the repository at this point in the history
Minor README fix.
  • Loading branch information
Scott Bell committed Dec 7, 2015
2 parents 7a94493 + be0574b commit 58019c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -405,14 +405,14 @@ The shorthand for quasiquotation is ` for `quasiquote` and , for `unquote`:

A different way to unquote expressions is `unquote-splicing`, which takes the values contained in a nested list and places them in the enclosing one:
```
> (let a (1 2 3)
> (let a '(1 2 3)
(quasiquote (9 8 (unquote-splicing a))))
(9 8 1 2 3)
```

The shorthand for `unquote-splicing` is `,@`:
```
> (let a (1 2 3)
> (let a '(1 2 3)
`(9 8 ,@a))
(9 8 1 2 3)
```
Expand Down

0 comments on commit 58019c6

Please sign in to comment.