Gossamer: a Rust-flavoured language with real goroutines and pause-free memory
Gossamer is a new programming language with Rust-like syntax that features real goroutines (fibers) and pause-free memory management via a unique compile-time reference-counting approach, aiming to combine ergonomics with high performance.
Background
Gossamer is a new systems programming language that blends Rust's ownership model with Go-style concurrency (goroutines) and offers a "pause-free" memory management model — meaning no stop-the-world garbage collection pauses. It targets developers frustrated by Rust's steep learning curve or Go's limited control over memory, aiming for the performance of Rust with the ergonomics of Go.