37 lines
463 B
Markdown
37 lines
463 B
Markdown
------------------------------------------------------------------------
|
|
|
|
## drop
|
|
|
|
Basis Function Combinator
|
|
|
|
drop == [rest] times
|
|
|
|
Expects an integer and a quote on the stack and returns the quote with n
|
|
items removed off the top. :
|
|
|
|
[a b c d] 2 drop
|
|
----------------------
|
|
[c d]
|
|
|
|
Gentzen diagram.
|
|
|
|
### Definition
|
|
|
|
if not basis.
|
|
|
|
### Derivation
|
|
|
|
if not basis.
|
|
|
|
### Source
|
|
|
|
if basis
|
|
|
|
### Discussion
|
|
|
|
Lorem ipsum.
|
|
|
|
### Crosslinks
|
|
|
|
Lorem ipsum.
|