fixed (comma)
[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 .Definition concept for NIP
16 ****
17 : NIP SWAP DROP ;
18 ****
19 ====