Hacker News new | ask | show | jobs
by symstym 2230 days ago
This seems similar to Zig (https://ziglang.org/#Compile-time-reflection-and-compile-tim...)
1 comments

Zig seems to have arbitrary compile-time code evaluation, but not the kind of AST generation you see here[1]. Nim macros seem to be a closer analogue[2].

[1]: https://github.com/seanbaxter/circle/blob/master/gems/rpn.md...

[2]: https://nim-lang.org/docs/macros.html

There's ongoing work to add support for generating arbitary types at compile time: https://github.com/ziglang/zig/issues/383.