Posts by Bruno Nascimento • 1 point
1 post
-
-2
votes3
answers87
viewsA: In the Kotlin language, how to access a public variable that is in one class, through another class?
Voce can make the following way EX ============== First Class class Pessoa { var nome: String = "Joao" } Second Class - Where Voce will use the first object class Casa { fun pessoasNaCasa() { val…