be quiet unless verbose
[rrq/rrqforth.git] / adoc / p_nip.adoc
1 // stack.asm:   WORD p_nip, 'NIP',fasm
2
3 anchor:p_nip[]
4
5 === Word: NIP
6
7 ....
8 Data stack: ( v1 v2 -- v2 )
9 ....
10
11 "NIP" is a function word that discards the second of the top two cells
12 on the data stack.
13
14 ====
15 .Word: NIP
16 [caption='Definition concept {counter:exec}: ']
17 ----
18 : NIP SWAP DROP ;
19 ----
20 ====