compiler working for some mathematical expressions, function calls and

simple conditionals
This commit is contained in:
2026-01-31 13:28:42 +00:00
parent e31deb594f
commit 52ef7872f0
10 changed files with 466 additions and 79 deletions
+1 -1
View File
@@ -7,6 +7,6 @@ int factorial(int n) {
int main() {
int res = factorial(3);
print(res);
printnum(res);
return 0;
}