Posts by Matheus Henrique • 79 points
2 posts
-
1
votes0
answers274
viewsQ: Difference between method and function?
Because in Java it’s called method and in Kotlin it’s called function, it’s just a different nomenclature, or is there a significant difference? Java: public class Teste { public static void…
-
6
votes2
answers3586
viewsQ: How to initialize an array in Kotlin?
I need to initialize an array in Kotlin more do not know how to do, in Java I did so: int numeros[] = new int[] {0,1,3,4,5,6,7,8,9};