I have a pre-calculated array [32768]u15
which i want to transform to a const array inside my source code.
I can:
- Calculate the const at comptime. Can I submit the compiler to some calculation (15 loops per element)?
- std.debug print the array and copy paste to a zig file.
- or somehow print to a file instead of std.debug.print? does Zig have something quick and dirty for that?