33 lines
429 B
Markdown
33 lines
429 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
|
|
|
|
## Crosslinks
|