Y
Hacker News
new
|
ask
|
show
|
jobs
by
cgh
188 days ago
Zig could include the file at compile-time with @embedFile.
3 comments
Twirrim
188 days ago
So could Go (
https://pkg.go.dev/embed
), Rust (
https://doc.rust-lang.org/std/macro.include_str.html
) and a number of other languages in the set.
link
AndyKelley
188 days ago
this would provide the optimizer the unfair chance to replace the entire application with a compile time constant
link
gus_massa
188 days ago
The idea of using a file is to force the program to use that number as an unknown value at compile time.
link
igouy
188 days ago
command line arguments would be unknown at compile time.
link