-
-
Save pedrolopesme/b2f4a079e59194d05104ef29f5976c81 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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