all repos — min @ 94ee679401633d8607cd5c684493abfecc4986ec

A small but practical concatenative programming language.

Added ERRORS_HANDLED variable to interpreter; changed next version to 0.46.1.
h3rald h3rald@h3rald.com
Wed, 20 May 2026 07:18:43 +0200
commit

94ee679401633d8607cd5c684493abfecc4986ec

parent

6f4c6d511ec45b957fbccf8b4ca8acbbef5691dc

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

jump to
M min.nimmin.nim

@@ -49,6 +49,7 @@

proc interpret*(i: In, s: Stream) = i.stdLib() i.open(s, i.filename) + ERRORS_HANDLED = false discard i.parser.getToken() try: i.interpret()

@@ -56,6 +57,7 @@ except CatchableError:

discard finally: i.close() + ERRORS_HANDLED = true proc minFile*(fn: string, op = "interpret", main = true): seq[ string] {.discardable.}
M min.nimblemin.nimble

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

# Package -version = "0.47.0" +version = "0.46.1" author = "Fabio Cevasco" description = "A small but practical concatenative programming language and shell." license = "MIT"
M min.ymlmin.yml

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

description: A small but practical concatenative programming language and shell. id: 182418196 name: min -version: 0.47.0+version: 0.46.1
M site/settings.jsonsite/settings.json

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

"temp": "temp", "templates": "templates", "title": "min language", - "version": "0.47.0" + "version": "0.46.1" }