This commit is contained in:
David Gonzalez Martin 2025-04-21 19:59:02 -06:00
parent 2be7142608
commit abc7c9cf68
2 changed files with 668 additions and 359 deletions

File diff suppressed because it is too large Load Diff

9
tests/basic_macro.bbb Normal file
View File

@ -0,0 +1,9 @@
sub = macro (a: s32, b: s32) s32
{
return a - b;
}
[export] main = fn [cc(c)] () s32
{
return sub(1, 1);
}