var my_set = {1, 2, 3}; print(2 in my_set); # expect: true print(4 in my_set); # expect: false print(1.0 in my_set); # expect runtime error: Value `1.0` is not hashable.