> Could you add a static block above const a3 = a1.concat(a2) to ensure it is > done at CT ?
There's no need, `const a3` means that the computation will 100% be performed at CT. `const` in Nim always means that something is computed and known at compile-time.
