length
length — counts the number of elements in a list or array.
length (list)
listA list or array.
The number of elements in the list or
array. If the argument is not a list or array,
returns 0.
Gamma>length(list(#a,#b,#c,#d));4Gamma>length([11,13,15,17,19,21]);6Gamma>length(sqr(2 + 3));0Gamma>