Hacker News new | ask | show | jobs
by jandrewrogers 224 days ago
It is difficult to overstate how useful compile-time execution is in practice. I can't imagine using a systems language without it now. The term "modern C++" largely denotes when compile-time execution was added to that language.

I would love to see Rust get compile-time execution that is as capable as Zig or C++20.

2 comments

> I would love to see Rust get compile-time execution that is as capable as Zig or C++20.

Isn't that just macros which are way more powerful than what Zig or C++20 offer?

> I would love to see Rust get compile-time execution that is as capable as Zig or C++20.

Can you give examples? Const functions are pretty capable in Rust already.