# unboxed (blogs) — RSS Amplifier

Recent posts from the 1 feeds in the RSS Amplifier directory that cover unboxed.

Page: <https://rssamplifier.com/topics/unboxed/blogs>  
Feed: <https://rssamplifier.com/topics/unboxed/blogs.md>

---

## [FAQ](https://antelang.org/docs/faq/)

_2026-05-25 · Ante_

FAQ Is it any good? Yes. Why use Ante? Safe, shared mutability with unboxed types. It is common to hear that shared mutability should be avoided, and while generally a good rule to design around, shared mutability is extremely important for enabling other aspects of the language: Safe, shared mutability enables Ante to model higher-level code from garbage-collected languages like Java or C#.…

## [A Vision for Future Low-Level Languages](https://antelang.org/blog/vision/)

_2025-10-24 · Ante_

A Vision for Future Low-Level Languages I&rsquo;ve had this vision in my head for quite a while now on what code written in a low-level language could look like. This vision has shaped my design of Ante and although I&rsquo;ve alluded to it before, I&rsquo;ve never explicitly stated it until now. Now, what makes a language low-level is a bit contentious. I&rsquo;m using it here to describe a group…

## [Stable, Mutable References](https://antelang.org/blog/stable_mutable_refs/)

_2025-08-21 · Ante_

Introduction In my first blog post I introduced &shared mut references as a way to achieve safe, shared mutability in a language with unboxed types. For more information on those, start with the first blog post. As a brief summary though, &shared mut references can be aliased freely and mutate freely with the one restriction of not being able to be projected into any &ldquo;shape-unstable&rdquo;…

## [Why Algebraic Effects?](https://antelang.org/blog/why_effects/)

_2025-05-21 · Ante_

Why Algebraic Effects Algebraic effects1 (a.k.a. effect handlers) are a very useful up-and-coming feature that I personally think will see a huge surge in popularity in the programming languages of tomorrow. They&rsquo;re one of the core features of Ante, as well as being the focus of many research languages including Koka, Effekt, Eff, and Flix. However, while many articles or documentation…

