Hacker News new | ask | show | jobs
by pjmlp 1240 days ago
.NET has always JIT all of the code, it never did any kind of interpretation with exception of tiny versions of it like .NET Compact Framework.

All Java implementation have flags to JIT without interpretation.

Their major implementations allow for PGO sharing across runs.

Finally, both ecosystems have supported forms of AOT for the last 20 years.