Add 'again' macro for recursive expansion

The 'again' macro is a new addition to the macro system, allowing for
recursive macro expansion. This commit introduces the necessary AST
nodes, macro expansion logic, and an integration test to ensure its
functionality. The `soa_series.myc` example has also been updated to
demonstrate its usage.
This commit is contained in:
Michael Schimmel
2026-03-09 11:22:32 +01:00
parent fa23a4c125
commit 11fc1e0e48
4 changed files with 44 additions and 1 deletions
+3
View File
@@ -0,0 +1,3 @@
(do
(repeat n 10 (print n)
)