Skip to content

Instantly share code, notes, and snippets.

@haoyu-c
Created May 19, 2020 11:51
Show Gist options
  • Save haoyu-c/074b55236a98136cff37fc388639ccd6 to your computer and use it in GitHub Desktop.
Save haoyu-c/074b55236a98136cff37fc388639ccd6 to your computer and use it in GitHub Desktop.
class Person {
let name: String
init(name: String) { self.name = name }
var apartment: Apartment?
}
class Apartment {
let unit: String
init(unit: String) { self.unit = unit }
weak var tenant: Person?
}
var john = Person(name: "John Appleseed")
var unit4A = Apartment(unit: "4A")
john.apartment = unit4A
unit4A.tenant = john
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment