erg/examples/dict.er
Shunsuke Shibayama 6c4e1dca35 Downgrade erg_type from crate to module
This is to allow `ConstSubr` to have a `Context`
2022-10-12 02:28:25 +09:00

3 lines
107 B
Python

immut_dict = {"Alice": 1, "Bob": 2, "Charlie": 3}
assert immut_dict["Alice"] == 1
print! immut_dict["Bob"]