all repos — min @ 56cfa1c9eba146eafc3fdf92170b5b412d2c952c

A small but practical concatenative programming language.

Merge pull request #57 from agentofuser/typo

Fixed typo
Fabio Cevasco h3rald@h3rald.com
Sun, 31 May 2020 17:38:43 +0200
commit

56cfa1c9eba146eafc3fdf92170b5b412d2c952c

parent

851f3d49e296f36e108921f6ec1bfd94c5aa1c49

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