Skip to content

Instantly share code, notes, and snippets.

@deven98
Created June 3, 2018 12:21
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 deven98/be8d87de360192a3c932eb1556627d35 to your computer and use it in GitHub Desktop.
Save deven98/be8d87de360192a3c932eb1556627d35 to your computer and use it in GitHub Desktop.
main() {
Box box1 = new Box();
box1?.destroy();
}
//This is equivalent to
//
// if (box1 != null)
// box1.destroy();
//
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment