Name

parse-comma:core_misc — ordinary primitive

Synopsis

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

Description

Store a char-delimited string in data space as a counted string. As seen in Bawd's

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

this implementation is much different from Bawd's

 : PARSE, PARSE STRING, ;