all repos — min @ bfb9c735c7611d9f60cbaa71e55406a04d3bb9a3

A small but practical concatenative programming language.

Updated version number, minor fixes.
h3rald h3rald@h3rald.com
Wed, 17 Jun 2020 16:37:30 +0200
commit

bfb9c735c7611d9f60cbaa71e55406a04d3bb9a3

parent

f7a0c56e9cb48c023054b68e60dd1786c1098f35

5 files changed, 5 insertions(+), 7 deletions(-)

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

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

const pkgName* = "min" - pkgVersion* = "0.19.6" + pkgVersion* = "0.20.0" pkgAuthor* = "Fabio Cevasco" pkgDescription* = "A tiny concatenative programming language and shell."
M core/interpreter.nimcore/interpreter.nim

@@ -11,8 +11,8 @@ scope,

parser type - MinTrappedException* = ref object of Exception - MinRuntimeError* = ref object of Exception + MinTrappedException* = ref object of CatchableError + MinRuntimeError* = ref object of CatchableError data*: MinValue proc raiseRuntime*(msg: string, data: MinValue) {.extern:"min_exported_symbol_$1".}=
M lib/min_http.nimlib/min_http.nim

@@ -16,7 +16,7 @@ result = newDict(i.scope)

for k, v in headers: result = i.dset(result, k, v.newVal) -type MinServerExit = ref object of Exception +type MinServerExit = ref object of CatchableError # Http
M min.nimmin.nim

@@ -295,7 +295,7 @@ var UNINSTALL = false

var libfile = "" let usage* = """ $1 v$2 - a tiny concatenative shell and programming language - (c) 2014-2018 Fabio Cevasco + (c) 2014-2020 Fabio Cevasco Usage: min [options] [filename]
M min.nimblemin.nimble

@@ -22,9 +22,7 @@ # Tasks

const compile = "nim c -d:release" - linux_x86 = "--cpu:i386 --os:linux" linux_x64 = "--cpu:amd64 --os:linux" - linux_arm = "--cpu:arm --os:linux" windows_x64 = "--cpu:amd64 --os:windows" macosx_x64 = "" parallel = "--parallelBuild:1 --verbosity:3"