From: sforman Date: Wed, 26 Jul 2023 05:01:55 +0000 (-0700) Subject: the BinInt zero vanished? X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=3f9f558ebbc6fc80df990a72462c7b8f27e9b1b6;p=joypy%2FThun.git the BinInt zero vanished? --- diff --git a/implementations/Nim/joy.nim b/implementations/Nim/joy.nim index 0875a58..6b6892a 100644 --- a/implementations/Nim/joy.nim +++ b/implementations/Nim/joy.nim @@ -63,6 +63,9 @@ type ParseError* = object of ValueError UnknownWordError* = object of ValueError + +let zero = 0.initBigInt + # Singleton values for Boolean type. let j_true* = JoyType(kind: joyTrue)