delimiter? ( obj -- ? )


Vocabulary
words

Inputs and outputs
objan object
?a boolean


Word description
Tests if an object is a delimiter word declared by delimiter.

Notes
Outputs f if the object is not a word.

Definition
USING: kernel ;

IN: words

: delimiter? ( obj -- ? )
dup word? [ "delimiter" word-prop ] [ drop f ] if ;