EMPTYP

Synopsis
EMPTYP thing
EMPTY? thing
Description

Outputs TRUE if thing is either the empty string or the empty list, FALSE otherwise.

Example
SHOW EMPTYP "Hello
false
SHOW EMPTYP "
true
SHOW EMPTYP [1 2 3]
false
SHOW EMPTYP []
true

SourceForge.net Logo