Added name to AUTHORS and added documentation

This commit is contained in:
Antony Woods 2015-03-19 08:43:11 +00:00
parent cbd942fd02
commit 0496b7f7b6
2 changed files with 13 additions and 0 deletions

View File

@ -61,3 +61,4 @@
* Shenyang Zhao <dev@zsy.im>
* Zack M. Davis <code@zackmdavis.net>
* Adrià Garriga Alonso <adria@monkingme.com>
* Antony Woods <antony@teamwoods.org>

View File

@ -944,7 +944,19 @@ This can be confirmed via Python's built-in ``help`` function::
times_three(x)
Multiplies input by three and returns result
(END)
last
-----------
.. versionadded:: 0.10.2
``last`` can be used for accessing the last element of a collection:
.. code-block:: clj
=> (last [2 4 6])
6
let
---