some improvements i think

This commit is contained in:
2026-01-16 13:32:36 +02:00
parent 49adb21b81
commit c69f589439
16 changed files with 338 additions and 5 deletions

9
asmrigs/tests/005.b Normal file
View File

@@ -0,0 +1,9 @@
add(a,b)
{
return a + b;
}
main()
{
return add(2,3);
}