all repos — min @ d71a718735ee576fcdf7c8fbd3f1282452af9081

A small but practical concatenative programming language.

Merge pull request #36 from SolitudeSF/devel_fix

Don't import unicode.strip, ospaths.
Fabio Cevasco h3rald@h3rald.com
Sat, 24 Nov 2018 15:44:07 +0100
commit

d71a718735ee576fcdf7c8fbd3f1282452af9081

parent

8d0adb665ec4243b9d9e373f4391aa7c1be2bc72

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,