(Forth:)
Swaps the top 2 words on the stack. For example, we could define NEGATE as follows:
   : negate ( n -- -n ) 0 swap - ;
(we need to SWAP to get the operands for - in the right order!)