Y
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
bigtunacan
3255 days ago
I don't think Rust or Delphi match as the parent specified garbage collection. Nim would be an option though.
link
cbHXBY1D
3255 days ago
C# has a compiled version that uses the MSVC backend.
link
bpicolo
3255 days ago
Rust isn't GCd
link
quchen
3255 days ago
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.
link