11fc1e0e48
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.
4 lines
35 B
Plaintext
4 lines
35 B
Plaintext
(do
|
|
(repeat n 10 (print n)
|
|
)
|
|
)
|