19 lines
525 B
Markdown
19 lines
525 B
Markdown
------------------------------------------------------------------------
|
|
|
|
## remove
|
|
|
|
Function
|
|
|
|
Expects an item on the stack and a quote under it and removes that item
|
|
from the the quote. The item is only removed once. If the list is empty
|
|
or the item isn't in the list then the list is unchanged.
|
|
|
|
[1 2 3 1] 1 remove
|
|
------------------------
|
|
[2 3 1]
|
|
|
|
### Definition
|
|
|
|
See the ["Remove Function" notebook](https://osdn.net/projects/joypy/scm/git/Thun/blobs/master/docs/notebooks/Remove-Function.ipynb).
|
|
|