hare

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

commit 8b178f6fef00f8f324bfcf356c289dcabc6f9591
parent 7d8ff23f1974831692c323e9f70e50eb644fabfc
Author: Eyal Sawady <ecs@d2evs.net>
Date:   Wed, 14 Apr 2021 12:52:23 -0400

strconv::f64tos: enable negative exponent test

Diffstat:
Mstrconv/ftos.ha | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/strconv/ftos.ha b/strconv/ftos.ha @@ -495,8 +495,7 @@ export fn f64tos(n: f64) const str = { assert(f64tos(0.0000012345678) == "0.0000012345678"); assert(f64tos(1.414) == "1.414"); assert(f64tos(1e234f64) == "1e234"); - // TODO: Negative exponents for floating point literals not implemented yet! - //assert(f64tos(1.2e-34) == "1.2e-34"); + assert(f64tos(1.2e-34) == "1.2e-34"); assert(f64tos(-6345.9721) == "-6345.9721"); assert(f64tos(1.23456789e67) == "1.23456789e67"); assert(f64tos(11.2233445566778899e20) == "1.122334455667789e21");