inserting ranges in swift sets
var f:Set = ["f", "5"] f.count f.contains("f") f.insert("g") for elem in 1...8 { f.insert(String(elem)) } print(f)