mirror of
https://github.com/erg-lang/erg.git
synced 2025-12-23 05:36:48 +00:00
9 lines
192 B
Python
9 lines
192 B
Python
d as {{"a", "b"}: {1, 2}} = {"a": 1}
|
|
dict = !d
|
|
|
|
dict.insert! "b", 2
|
|
_ = dict.get("a") == "a" # ERR
|
|
_ = dict.get("b") == "a" # ERR
|
|
_ = dict.get("c") # OK
|
|
_ = dict["b"] # OK
|
|
_ = dict["c"] # ERR
|