Name
str-nip:dstrings — ordinary primitive
Synopsis
FORTH
$NIP
($: a$ b$ -- b$ )(
)
;
p4:"str-nip";
Description
Drop the next to top item from the string stack.
<ansref>"string-nip"</ansref>
NOTE: Because of essential string space bookkeeping, the
system level implementation can be little more efficient than
the high-level definition:
: $NIP $SWAP $DROP ;