From: Mike Lowis Date: Wed, 19 Jun 2024 20:16:45 +0000 (-0400) Subject: dictionaries are working as expected now. Still some weirdness on handling comparison... X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=e5107633804cee4de5879887b6191f0544b1910b;p=proto%2Fcerise-c.git dictionaries are working as expected now. Still some weirdness on handling comparisons. Probably need a function to return a type enum to make sure they are the same first --- diff --git a/cerise-c.m b/cerise-c.m index f37fc59..e1b7fa7 100644 --- a/cerise-c.m +++ b/cerise-c.m @@ -102,7 +102,6 @@ TestHashOps() def item = 42 set hash["foo"] = item assert hash["foo"] == 42 - assert hash["foo"] == "bar" assert hash["baz"] == "boo" }