From b8d7eabc023bf9db0150049d8e909086f6ad91bc Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 5 Nov 2024 15:18:32 -0500 Subject: Deprecate bit-width integer/num literals in favor of using type constructors --- test/datetime.tm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/datetime.tm') diff --git a/test/datetime.tm b/test/datetime.tm index 19ca74b0..64077c27 100644 --- a/test/datetime.tm +++ b/test/datetime.tm @@ -36,8 +36,8 @@ func main(): = "Tuesday" >> t:unix_timestamp() - = 1704221100[64] - >> t == DateTime.from_unix_timestamp(1704221100[64]) + = Int64(1704221100) + >> t == DateTime.from_unix_timestamp(1704221100) = yes >> t < t:after(minutes=1) -- cgit v1.2.3