BEE Lisp Functions Reference

<object> AREF (A index)

Returns pointer to element of list or string A. Parameter index indicates the index of element, where 0 is the index of the first element.

Example:

(AREF ‘(a b c) 1)                      ; b

(AREF “String” 1)                      ; “t”