Tag
Pystd is a from-scratch C++ standard library designed to drastically reduce compilation times, achieving full builds in seconds compared to the standard library's minute-long compilations, while providing similar functionality.
A Lisp interpreter embedded in Rust's trait system, allowing recursive functions, closures, and continuation passing style at compile time.
A blog post presenting a Rust macro that computes the offset of a slice field in a struct at compile time, using a fake allocation to work around current stable Rust limitations.
C++26's #embed and static reflection, combined with the simdjson library, allow JSON parsing at compile time, turning configuration files into compile-time constants with no runtime overhead.
Revo is a new programming language that features clean data flow without nesting, errors-as-values, everything as expressions, compile-time execution, and procedural macros.
Mitchell Hashimoto demonstrates how to use Zig's comptime to create subset types of tagged unions, enabling compile-time safety without exhaustive case handling.