all repos — min @ a2a80dd3d4875310deac41051ee6680765ce575c

A small but practical concatenative programming language.

Fixed typos, reset version for now
h3rald h3rald@h3rald.com
Thu, 30 Dec 2021 15:51:12 +0000
commit

a2a80dd3d4875310deac41051ee6680765ce575c

parent

719f6f7527b68403efb92e4090b705e56f5af996

4 files changed, 6 insertions(+), 5 deletions(-)

jump to
M min.ymlmin.yml

@@ -2,4 +2,4 @@ author: Fabio Cevasco

description: A small but practical concatenative programming language and shell. id: 56055122 name: min -version: 0.36.1+version: 0.36.0
M next-release.mdnext-release.md

@@ -1,5 +1,6 @@

### Fixes and Improvements -* Miscellaneous documentarion fixes. +* Miscellaneous documentation fixes. +* Now clearing the stack after every HTTP request received by `http-server`. * Fixed #174 (cons operator was not creating a new quotation). * Fixed #176 (times can now execute a quotation 0 times).
M site/contents/learn-operators.mdsite/contents/learn-operators.md

@@ -63,7 +63,7 @@ A sigil can be prepended to a double-quoted string or a single word (with no spaces) which will be treated as a string instead of using the corresponding symbol.

For example, the following executes the command `ls -al` and pushes the command return code on the stack: - !"ls -al"` + !"ls -al" Currently min provides the following sigils:

@@ -118,7 +118,7 @@ ...will push the following dictionary on the stack:

{true :test} -Also, sigil definitions can be annotated with documentation comments (starting with `;;` or wrapped in `#|| ... ||#`)`) so that a help text can be displayed using the {#link-operator||lang||help#} symbol. +Also, sigil definitions can be annotated with documentation comments (starting with `;;` or wrapped in `#|| ... ||#`) so that a help text can be displayed using the {#link-operator||lang||help#} symbol. ## Auto-popping
M site/settings.jsonsite/settings.json

@@ -6,5 +6,5 @@ "rules": "rules.min",

"temp": "temp", "templates": "templates", "title": "min language", - "version": "0.36.1" + "version": "0.36.0" }