ARRAYP thing ARRAY? thing
thing
Outputs TRUE if the input is an array, FALSE otherwise.
SHOW ARRAYP "Hello false
SHOW ARRAYP "Hello
SHOW ARRAYP [Hello] false
SHOW ARRAYP [Hello]
SHOW ARRAYP {Hello} true
SHOW ARRAYP {Hello}