LIST?
Syntax LIST? object  
 
Explanation

LIST? reports TRUE if its input is a list; otherwise, it reports FALSE.

See also NUMBER? and WORD?.

Examples LIST? [GREEN BLUE] 
Result: TRUE 
LIST? "GREEN 
Result: FALSE 
LIST? [] 
Result: TRUE 
LIST? 34 
Result: FALSE 
LIST? SENTENCE "ROCKY "ROAD 
Result: TRUE 

TopIndex