We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f96be2d commit d147e87Copy full SHA for d147e87
1 file changed
index.html
@@ -88,6 +88,21 @@ <h2>Comparison</h2>
88
</code></pre>
89
</td>
90
</tr>
91
+
92
+ <tr>
93
+ <td>
94
+ <pre><code class="lisp">
95
+(map (lm (x) (+ 2 x)) '(1 2 3))
96
+(map ^(+ 2 %) '(1 2 3))
97
+ </code></pre>
98
+ </td>
99
100
101
+(mapcar (lambda (x) (+ 2 x)) '(1 2 3))
102
103
104
+ </tr>
105
106
<tr>
107
<td>
108
<pre><code class="lisp">
0 commit comments