5 lines
76 B
Text
5 lines
76 B
Text
var t = (x: 1, y: 2, z: 3)
|
|
|
|
for x in t.Keys() {
|
|
print("\(x)=\(t[x])")
|
|
}
|