Skip to content
GitLab
Explore
Sign in
Register
Changes
Page history
Initial Home page
authored
Sep 22, 2015
by
Clint Moore
Show whitespace changes
Inline
Side-by-side
Home.md
0 → 100644
View page @
a356ca56
I'll use this to list some of the stuff I've done with pikey.
First off, a couple of simple macros.
```
common-lisp
(
defmacro+ps
->
(
&rest
body
)
`
(
chain
,@
body
))
(
defmacro+ps
_
(
function
&rest
body
)
`
(
->
_
(
,
function
,@
body
)))
```