all repos — min @ 37e36ba4f876faff4c13f325bf3a53865fc4df80

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

37e36ba4f876faff4c13f325bf3a53865fc4df80

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,