all repos — min @ e8e0141c82c6da13ee7eefd29692c11e350bd3a4

A small but practical concatenative programming language.

Don't import unicode.strip, ospaths.
SolitudeSF solitudesf@protonmail.com
Sat, 24 Nov 2018 15:56:47 +0200
commit

e8e0141c82c6da13ee7eefd29692c11e350bd3a4

parent

2938d67e75a53ed91e05577efd362b89f48d3806

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,