let intSet: Set<Int> = [1, 2, 3]let strSet: Set = ["one", "two", "three"]print("intSet is \(intSet)") print("strSet is \(strSet)")