Name

tuck:core — ordinary primitive

Synopsis

FORTH

TUCK ( a b -- b a b )();
p4:"tuck";

Description

shove the top-value under the value beneath. See OVER and NIP

 simulate:    : TUCK  SWAP OVER ;
 

dpANS .6.2.2300 - standard forth word