My current instructor insists that the proper way to initialize an object during runtime is as below:
class Person {
var name: String; var age: Int
init(name: String, age: Int){self.name = name; self.age = age}}
func CreatePerson (person: String, personName: String, personAge: Int){
var \(person) = Person (name: personName, age: personAge)
CreatePerson(person:"Confused",personName:"Coder",personAge: 35)
Needless to say it is not quite so simple. \(person) in the func Create Person appears to solely be a String thing.
Sorry to bother you guys with what appears to be a simple process, but "That's how it's supposed to work" really isn't furthering my swift capabilities.