Carbon Copy No.8: Classes Part II
github.com·19h·
Discuss: Hacker News

Carbon Copy, September 2025

Here is the new Carbon Copy, your periodic update on the Carbon language!

Carbon Copy is designed for those people who want a high-level view of what’s happening on the project. If you’d like to subscribe, you can join announce@carbon-lang.dev. Carbon Copy should arrive roughly (sometimes extremely roughly) every other month.

Toolchain update

Work on the toolchain continues. We have made strides in interop!

If you just want to say hello:

import Cpp library "stdio.h";

fn Run() {
let hello: array(Core.Char, 6) = ('H', 'e', 'l', 'l', 'o', '!');
for (n: Core.Char in hello) {
Cpp.putchar((n as u8) as i32);
}
}

For more complicated interop, say we have the following `circl…

Similar Posts

Loading similar posts...