From 2c904ff1737e34008f7a6c5d4b072d87a45a3fbc Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 19 Nov 2024 13:41:52 -0500 Subject: Go back to stringifying integers/num32s/bytes without the type constructor. --- test/optionals.tm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/optionals.tm') diff --git a/test/optionals.tm b/test/optionals.tm index cf9284e1..eba1a685 100644 --- a/test/optionals.tm +++ b/test/optionals.tm @@ -113,12 +113,12 @@ func main(): !! ... !! Int64s: >> yep := maybe_int64(yes) - = Int64(123)? + = 123? >> nope := maybe_int64(no) = !Int64 >> if yep: >> yep - = Int64(123) + = 123 else: fail("Falsey: $yep") >> if nope: fail("Truthy: $nope") -- cgit v1.2.3