>From the manual: [https://nim-lang.org/docs/manual.html](https://nim-lang.org/docs/manual.html)
The implicit initialization can be avoided for optimization reasons with the
noinit pragma:
var
a {.noInit.}: array [0..1023, char]
