all repos — min @ 3ca37bddbba6bcf0943a0b547c58c07450d4d6f6

A small but practical concatenative programming language.

Minor changes.
h3rald h3rald@h3rald.com
Sun, 08 Jul 2018 14:01:33 +0200
commit

3ca37bddbba6bcf0943a0b547c58c07450d4d6f6

parent

63cf2540fc631bdf5124965e6717c9d6f0a24451

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

jump to
M core/parser.nimcore/parser.nim

@@ -67,8 +67,8 @@ state*: seq[MinParserState]

kind*: MinEventKind err*: MinParserError filename*: string - MinValue* = ref MinValueObject - MinValueObject* = object + MinValue* = ref MinValueObject + MinValueObject* = object {.acyclic, final.} line*: int column*: int filename*: string

@@ -88,7 +88,7 @@ of minBool: boolVal*: bool

MinScopeKind* = enum minNativeScope, minLangScope - MinScope* = object + MinScope* = object {.acyclic, shallow, final.} parent*: ref MinScope symbols*: CritBitTree[MinOperator] case kind: MinScopeKind
M min.nimmin.nim

@@ -244,6 +244,7 @@ i.stdLib()

i.dynLib() var s = newStringStream("") i.open(s, "<repl>") + DEV = true var line: string var ed = initEditor(historyFile = MINHISTORY) while true:
M min.nimblemin.nimble

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

# Package -version = "0.17.0" +version = "0.17.1" author = "Fabio Cevasco" description = "A tiny concatenative programming language and shell." license = "MIT"
M site/settings.jsonsite/settings.json

@@ -5,6 +5,6 @@ "templates": "templates",

"temp": "temp", "output": "output", "title": "min language", - "version": "0.17.0", + "version": "0.17.1", "rules": "rules.min" }