Returns an integer indicating the number of elements in a list
Supported Platforms: Windows and Mac OS
(length lst)
Type: List
An empty list or a list with one or more elements.
Type: Integer
A numeric value.
(length '(a b c d)) 4 (length '(a b (c d))) 3 (length '()) 0