Skip to content

Instantly share code, notes, and snippets.

@pedrolopesme
Created May 31, 2017 22:11
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 pedrolopesme/1abec243840248a1e769ff72b71f5434 to your computer and use it in GitHub Desktop.
Save pedrolopesme/1abec243840248a1e769ff72b71f5434 to your computer and use it in GitHub Desktop.
fun myFunction(){
var myVar:String? = null;
// Nesse caso,myVarLength será zero.
var myVarLength:Int = myVar?.length ?: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment