Skip to content

Instantly share code, notes, and snippets.

@froggomad
Created May 10, 2021 16:09
Show Gist options
  • Select an option

  • Save froggomad/1f74ebdadc6ca3765ef3f0a67c8fc28b to your computer and use it in GitHub Desktop.

Select an option

Save froggomad/1f74ebdadc6ca3765ef3f0a67c8fc28b to your computer and use it in GitHub Desktop.
class PropertyOwner {
var house: Home!
}
class Home {
var owner: PropertyOwner!
}
let home = Home()
let propertyOwner = PropertyOwner()
home.owner = propertyOwner
propertyOwner.house = home
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment