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