(Forth:)

De-facto standard stack manipulation word, it DROPs the second word of the stack:

   : nip ( x y -- y) swap drop ;
NIP is not standard; it's just defined the same way (and called the same) by everyone. So much so that many implementations define it for you.

Compare OVER, TUCK and DROP.