<How to take an array of integer as variable and p...
# stackoverflow
u
How to take an array of integer as variable and print out the first element of the array in kotlin? I am new to kotlin From what I understanding this code should be working but it isn't fun main(args: Array) { //printing out the first element of the array println(args[0]) } main([12,3,4,5])