all repos — min @ cccb01da07a2a57aa4710ba65955c2b539fedf63

A small but practical concatenative programming language.

Fixed small mistakes in the docs.
Fabio Cevasco h3rald@h3rald.com
Wed, 02 Aug 2017 05:57:21 +0200
commit

cccb01da07a2a57aa4710ba65955c2b539fedf63

parent

f6ec12656f64656fd13072badb6a69d39bf7382a

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

jump to
M site/contents/_includes/_download.mdsite/contents/_includes/_download.md

@@ -18,7 +18,7 @@ Alternatively, you can build min from source as follows:

1. Download and install [nim](https://nim-lang.org). 2. Download and build [Nifty](https://github.com/h3rald/nifty), and put the nifty executable somewhere in your [$PATH](class:kwd). -3. Clone the min [repository](https://github.com/h3rald/hastyscribe). +3. Clone the min [repository](https://github.com/h3rald/min). 4. Navigate to the min repository local folder. 5. Run **nifty install** to download min’s dependencies. 7. Run **nim c -d:release min.nim**.
M site/contents/_includes/_learn-operators.mdsite/contents/_includes/_learn-operators.md

@@ -15,7 +15,7 @@ * Contain zero or more letters, numbers and/or any of the following characters: `/ ! ? + * . _ -`

It is possible to define symbols using the {#link-operator||lang||define#} symbol. The following min program defines a new symbol called square that duplicates the first element on the stack and multiplies the two elements: - (dup *) square define + (dup *) "square" define Besides symbols, min provides a set of predefined _sigils_ for commonly-used symbols. For example, the previous definition could be rewritten as follows using sigils: