I have a binary data file that I would like to embed in the executable at compile time, and assign to a Nim array. Something similar to Rust's [include_bytes](https://doc.rust-lang.org/core/macro.include_bytes.html) macro or [this solution for C/C++](https://github.com/graphitemaster/incbin/tree/main). Is something like this available for Nim?
- Including a binary data file as a Nim array tord
- Including a binary data file as a Nim array dissolved_girl