three-drop:toolbelt — ordinary primitive
FORTH
3DROP ( x y z -- )();p4:"three-drop";
3DROP ( x y z -- )(
)
Drop the top three elements from the stack.
: 3DROP DROP 2DROP ;