Is there any interest in using `[]` syntax to init...
# language-proposals
b
Is there any interest in using
[]
syntax to initialize arrays? Like:
Copy code
val x: DoubleArray = []
val y: Array<String> = ["Hello", "World"]
val z: [Int] = [42]