joelarcos
10/10/2018 - 5:47 PM

designated-initializer-1.swift

init() {
  // perform some initilization here
}
init(name: String) {
  // perform some initilization here
}
init(name: String, age: Int) {
  // perform some initilization here
}