all repos — min @ 22b6ca047f31b0d977073f7e42faea9d6df3ae68

A small but practical concatenative programming language.

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

22b6ca047f31b0d977073f7e42faea9d6df3ae68

parent

eabd888f8f61f895c4022ca2b836c8410530592d

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`.