Структура экземпляров Swift

struct Person {

  var name = " "
  var age = 0
}

// create instance of struct
var person1 = Person()
SAMER SAEID