From 967b649da20f1cb2011025456853cb55f25e9a88 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 18 Aug 2024 20:39:57 -0400 Subject: Deprecate `#` operator in favor of .length and fix up some issues --- test/tables.tm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/tables.tm') diff --git a/test/tables.tm b/test/tables.tm index 7f8383d8..7b3595b6 100644 --- a/test/tables.tm +++ b/test/tables.tm @@ -15,7 +15,7 @@ func main(): >> t_str = "(one:1)(two:2)" - >> #t + >> t.length = 2 >> t.fallback = !{Text:Int} @@ -35,7 +35,7 @@ func main(): >> t2:get("???", 999) = 999 - >> #t2 + >> t2.length = 1 >> t2.fallback = @%{"one":1, "two":2}? -- cgit v1.2.3