Skip to content

Instantly share code, notes, and snippets.

@pedrolopesme
Created May 31, 2017 22:12
Embed
What would you like to do?
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