Initializing an array of longs

Report a typo

Create an array of longs named longs with three elements 100_000_000_001, 100_000_000_002, 100_000_000_003, and output the array.

Use the provided code template.

Write a program in Kotlin
fun main() {
val longs = // ...

// do not touch the lines below
println(longs.joinToString())
}
___

Create a free account to access the full topic