Files
Pyarmor-Static-Unpack-1shot/tests/input/test_sets.py
Akash Munagala 66c46661d9 Add test
2023-02-12 17:01:37 -08:00

6 lines
79 B
Python

a = set()
b = {1, 2}
c = {"AB", "CD"}
# Below uses SET_UPDATE
d = {1, 2, 3, 4}