|
|
|
|
|
by gizmo686
247 days ago
|
|
Also, the proposed garbage collector is still opt in. Only pointers that are specifically marked as GC are garbage collected. This means that most references are still cleaned up automatically when the owner goes out of scope. This greatly reduces the cost of GC compared to making all heap allocations garbage collected. This isn't even a new concept in Rust. Rust already has a well accepted RC<T> type for reference counted pointers. From a usage perspective, GC<T> seems to fit in the same pattern. |
|
Add opt-in development compilation JIT for quick iteration and you don't need any other language. (Except for user scripts where needed.)