Skip to content

Instantly share code, notes, and snippets.

@artturijalli
Created January 17, 2022 13:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save artturijalli/730d8b69a7250af382b5531f2433b8e9 to your computer and use it in GitHub Desktop.
Save artturijalli/730d8b69a7250af382b5531f2433b8e9 to your computer and use it in GitHub Desktop.
class Fruit { var name = "Banana" }
let fruit1 = Fruit()
let fruit2 = fruit1
print(fruit1 === fruit2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment