all repos — min @ 2e3bd46d2647b3d1024415fa0f8d8819c1580b48

A small but practical concatenative programming language.

Fixed mistaken indentation level
Peter Munch-Ellingsen peterme@peterme.net
Mon, 23 Oct 2017 10:49:43 +0200
commit

2e3bd46d2647b3d1024415fa0f8d8819c1580b48

parent

58059c6bc98b432f7da0a678e16b9132e9a6b105

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M lib/min_logic.nimlib/min_logic.nim

@@ -62,8 +62,8 @@ elif n1.isFloat and n2.isFloat:

i.push newVal(n1.floatVal > n2.floatVal or floatCompare(n1, n2)) elif n1.isFloat and n2.isInt: i.push newVal(n1.floatVal > n2.intVal.float or floatCompare(n1, n2)) - else: - i.push newVal(n1.strVal >= n2.strVal) + else: + i.push newVal(n1.strVal >= n2.strVal) def.symbol("<") do (i: In): var n1, n2: MinValue