struct Mechanic { var carColor = "Black" } let monCar = Mechanic() var dadCar = monCar monCar.carColor // Black dadCar.carColor // Black