Can i declare `Array<Int>` using 4 elements ...
# getting-started
a
Can i declare
Array<Int>
using 4 elements if i already can calc them during the init? Or do i always need to do
Array<Int>(4) { 0 }
before?