[Swift] 교집합, 합집합, [String:String]
import SwiftUI struct Variable: View { let name = "nawon" let age:Int = 20 let hasJob: Bool = true let enkoDictionary = ["Apple":"사과", "Banana":"바나나", "Coconut":"코코넛"] let houseAnimal: Set = ["🐶", "🐱","🐹"] let farmAnimal: Set = ["🐻","🐼","🐮", "🐱","🐹"] var body: some View { VStack { Text(name) Text(name) Text("hello, \(name) \(age) \(hasJob.description)") Text(enkoDictionary["Apple"]!) Text(houseA..