If I want a static array:
int[5] a = [1, 2, 3, 4, 5];
I'd have to specify the size in advance (5 in this case), which
means that adding extra elements later on would require that the
size be update.
Is there a way to let the compiler automatically determine the size
based on the argument list?