Y
Hacker News
new
|
ask
|
show
|
jobs
by
jasinjames
568 days ago
Compilers are a good one. I know Rust's original compiler (before being self hosted) was implemented in OCaml. Darklang's compiler was in OCaml as well.
1 comments
delta_p_delta_x
568 days ago
rustc targets LLVM IR by default, and I daresay the bulk of the optimisation and assembly-lowering work is done in LLVM. Which is solidly C++.
link