Length

(length list) -> integer

Returns the length of a list.

Examples:

>>(length '())
:: 0
>>(length '(a b c)
:: 3
>>(length '((a b) c)
:: 2