Collection (Set)
var paintingsInMOMA: Set = [
"The Dream",
"The Starry Night",
"The False Mirror"
]
We can use a collection (Set
) to store unique
elements of the same data type
Comments
var paintingsInMOMA: Set = [
"The Dream",
"The Starry Night",
"The False Mirror"
]
We can use a collection (Set
) to store unique
elements of the same data type