Skip to content

Instantly share code, notes, and snippets.

@pedrolopesme
Created May 31, 2017 22:12
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/b2f4a079e59194d05104ef29f5976c81 to your computer and use it in GitHub Desktop.
Save pedrolopesme/b2f4a079e59194d05104ef29f5976c81 to your computer and use it in GitHub Desktop.
fun myFunction(){
var myVar:String? ="Hello, World!";
if(myVar != null) {
println(myVar.length);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment