Hacker News new | ask | show | jobs
by lmm 3255 days ago
You already mentioned three; Rust, Nim and Delphi also come to mind.
3 comments

I don't think Rust or Delphi match as the parent specified garbage collection. Nim would be an option though.
C# has a compiled version that uses the MSVC backend.
Rust isn't GCd
Keep in mind that reference counting, which Rust supports in its standard library, is a also form of garbage collection. It may not be part of the core language, but then again neither are RAII in C++, monads in Haskell, and getters/setters in Java.