From bf3cdc3dfa4dcd0d17f182fe875d718cb4a4272f Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 23 May 2024 13:09:59 -0400 Subject: Refine the parsing of blocks so it's always ':' [inline-block] [indent indented-block] --- test/arrays.tm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/arrays.tm') diff --git a/test/arrays.tm b/test/arrays.tm index de1771b7..95b4fe38 100644 --- a/test/arrays.tm +++ b/test/arrays.tm @@ -87,10 +87,10 @@ func main(): >> nums = [-20, 10, 30] // Custom sort functions: - >> nums:sort(func(x:&%Int,y:&%Int) x:abs() <> y:abs()) + >> nums:sort(func(x:&%Int,y:&%Int): x:abs() <> y:abs()) >> nums = [10, -20, 30] - >> nums:sort(func(x:&%Int,y:&%Int) y[] <> x[]) + >> nums:sort(func(x:&%Int,y:&%Int): y[] <> x[]) >> nums = [30, 10, -20] -- cgit v1.2.3