This commit is contained in:
David Gonzalez Martin 2025-04-21 19:59:02 -06:00
parent 2be7142608
commit 6abab823aa
2 changed files with 428 additions and 255 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);
}