Last active
March 13, 2017 10:18
-
-
Save shabib87/ff237e074408961ab034d37ac50d153b to your computer and use it in GitHub Desktop.
In support to blog post
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var person: Person? = Person(name: "John Doe") | |
var apartment: Apartment? = Apartment(number: 123) | |
person?.apartment = apartment | |
apartment?.person = person | |
person = nil | |
apartment = nil | |
// output: | |
// | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment