Skip to content

Instantly share code, notes, and snippets.

@pedrolopesme
Last active June 1, 2017 11:59
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/c46fcb99fc8bab6489e4bfc270e7627a to your computer and use it in GitHub Desktop.
Save pedrolopesme/c46fcb99fc8bab6489e4bfc270e7627a to your computer and use it in GitHub Desktop.
fun myFunction(name: String){
// name nunca será null. Dentro do escopo desta função
// não há a necessidade de checar se name == null
println(name.length);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment