Fix syntax errors in compiler and clean up debug output

This commit is contained in:
10x Developer 2026-05-03 17:13:25 +02:00
parent 35a4fb7fef
commit 80caf6412c
19 changed files with 243 additions and 0 deletions

View file

@ -0,0 +1,10 @@
// test-simple-function.c
int add(int a, int b)
{
return a + b;
}
int main(int argc, int argv)
{
return add(1, 2);
}