Name

three-drop:toolbelt — ordinary primitive

Synopsis

FORTH

3DROP ( x y z -- )();
p4:"three-drop";

Description

Drop the top three elements from the stack.

 : 3DROP   DROP 2DROP ;