Hacker News new | ask | show | jobs
by alchemio 1130 days ago
Zig is plenty fast for a compiled language with optimizations. The Go compiler has no debug/release profiles and the generated machine code isn’t as optimized as say a language using llvm. If you compare it to C++ or Rust, Zig actually has better compile times, and it keeps improving.
1 comments

Only C++ without incremental compilation, incremental linking and modules.

VC++ does import std in a fraction of time it takes to #include <iostream>.