(length list)
The length function returns number of elements in the given argument list.
Examples
: (length '(1 2 3))
3
: (length '(1 2 3 (4 5)))
4
: (length abc)
0