Removing accidental 1 insertion. Sorry paultag!

This commit is contained in:
Christopher Allan Webber 2013-04-03 16:27:20 -05:00
parent 39bc7e0b97
commit d5d05c1dba

View File

@ -380,7 +380,7 @@ Let's take the classic:
(loop (print (eval (read))))
Rather then write it like that, we can write it as follows:
1
.. code-block:: clj
(-> (read) (eval) (print) (loop))