Skip to content

Instantly share code, notes, and snippets.

@pedrolopesme
Created May 31, 2017 22:10
Embed
What would you like to do?
fun myFunction(){
var myVar:String? = null;
// ↓ Você não pode chamar o .length diretamente
var myVarLength:Int = myVar.length;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment