Name

parse-comma-quote:core_misc — immediate primitive

Synopsis

FORTH
PARSE," ( "chars<">" -- )(); 
 ;

Description

Store a quote-delimited string in data space as a counted string.

 : ," [CHAR] " PARSE  STRING, ; IMMEDIATE

implemented here as

 : PARSE," [CHAR] " PARSE, ; IMMEDIATE