all repos — min @ 1ea37e3dbc75b276054ac6341660b8573c6daae4

A small but practical concatenative programming language.

Fixed typo
Agent of User git@agentofuser.com
Fri, 15 May 2020 20:15:16 -0400
commit

1ea37e3dbc75b276054ac6341660b8573c6daae4

parent

aba502e14a8ef758e8453e7c1e15a011c9054ef4

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M site/contents/learn-quotations.mdsite/contents/learn-quotations.md

@@ -38,7 +38,7 @@ Consider the following program:

(1 2 3 4 5 6 7) (odd?) filter -This programs returns a new quotation containing all odd numbers contained in quotation `(1 2 3 4 5 6 7)`. +This program returns a new quotation containing all odd numbers contained in quotation `(1 2 3 4 5 6 7)`. In this case, the second quotation is used to _quote_ the symbol `odd?` so that instead of being executed immediately, it will be executed by the symbol `filter` on each element of the first quotation. In this way, we may say that `(odd?)` is _dequoted_ by the symbol `filter`.