all repos — min @ e63cf2e5a2c2bf1f97384406a2c3cec55bd2a7a2

A small but practical concatenative programming language.

Merge branch 'master' of https://github.com/h3rald/min
h3rald h3rald@h3rald.com
Sun, 09 Dec 2018 17:05:13 +0100
commit

e63cf2e5a2c2bf1f97384406a2c3cec55bd2a7a2

parent

244d281fad34fa035c29fa33d02446ff8b667c0a

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

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

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

import - ospaths + os const pkgName* = "min"
M core/interpreter.nimcore/interpreter.nim

@@ -4,7 +4,6 @@ strutils,

critbits, os, algorithm, - ospaths, times, logging import
M core/parser.nimcore/parser.nim

@@ -4,11 +4,12 @@ lexbase,

sequtils, strutils, streams, - unicode, tables, critbits, math, logging + +import unicode except strip type MinTokenKind* = enum
M min.nimmin.nim

@@ -6,7 +6,6 @@ critbits,

parseopt, strutils, os, - ospaths, json, sequtils, algorithm,