hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 25c5c490f983636de33a921ec2468096af727682
parent 88863776d03b34d2e27d67decee12c06f9995275
Author: Eyal Sawady <ecs@d2evs.net>
Date:   Sun,  7 Mar 2021 16:51:26 -0500

crypto::sha256+test: s/errorln/errorfln/

Diffstat:
Mcrypto/sha256/+test.ha | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/crypto/sha256/+test.ha b/crypto/sha256/+test.ha @@ -35,7 +35,7 @@ use strio; }; if (strio::string(hex) != vector.1) { - fmt::errorln("Vector {}: {} != {}", + fmt::errorfln("Vector {}: {} != {}", i, strio::string(hex), vector.1); abort(); }; @@ -59,7 +59,7 @@ use strio; //}; //if (strio::string(hex) != expected) { - // fmt::errorln("Biggo vector: {} != {}", + // fmt::errorfln("Biggo vector: {} != {}", // strio::string(hex), expected); // abort(); //};