Meet Raku++, our new compiler for the Raku language

13 July 2026

Meet Raku++, our new compiler for the Raku language

We are excited to announce Raku++ — a brand-new, from-scratch implementation of the Raku programming language, written entirely in C++ with no third-party dependencies.

Raku++ is open source and lives on GitHub: github.com/ash/rakupp.

Why it matters

Raku is one of the most expressive programming languages ever designed, and Raku++ makes it fast to start and easy to ship. It is a single self-contained binary: download it, run your program, done.

my @primes = (2..*).grep(*.is-prime);
say @primes[^10];

The highlights

Get it today

Prebuilt binaries are available for macOS, Linux, and Windows on the releases page, and macOS users can simply:

brew tap ash/rakupp
brew install rakupp

Raku++ is also the engine behind two more announcements coming this week — stay tuned.

Star the project, try it on your own code, and tell us what breaks: github.com/ash/rakupp.

Back to Blog