From 68bedd3c23757a8576e77f38e38ddcf9ecd26d19 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 21 Sep 2025 18:01:19 -0400 Subject: Use colons instead of '=' for tables (e.g. {1: 2}) --- test/structs.tm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/structs.tm') diff --git a/test/structs.tm b/test/structs.tm index fdf92d18..05349068 100644 --- a/test/structs.tm +++ b/test/structs.tm @@ -58,8 +58,8 @@ func main() >> my_pass := Password("Swordfish") assert my_pass == Password("Swordfish") assert "$my_pass" == "Password(...)" - >> users_by_password := {my_pass="User1", Password("xxx")="User2"} - assert "$users_by_password" == '{Password(...)="User1", Password(...)="User2"}' + >> users_by_password := {my_pass: "User1", Password("xxx"): "User2"} + assert "$users_by_password" == '{Password(...): "User1", Password(...): "User2"}' assert users_by_password[my_pass]! == "User1" >> CorecursiveA(@CorecursiveB()) -- cgit v1.2.3