Skip to content

Instantly share code, notes, and snippets.

@Fleshgrinder
Created February 19, 2017 17:41
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 Fleshgrinder/c25ab5c7e8abd604afc3b1163de2f3b6 to your computer and use it in GitHub Desktop.
Save Fleshgrinder/c25ab5c7e8abd604afc3b1163de2f3b6 to your computer and use it in GitHub Desktop.
The Case of the Null Reference: Code Listing 4
function f(Integer? x) {
return x?.plus(42);
}
print(f(null));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment