Merge compiler and emulator progress from last few months into main. #11

Merged
zxq5 merged 55 commits from compiler into main 2026-02-14 11:54:15 +00:00
4 changed files with 12 additions and 8256 deletions
Showing only changes of commit 782c842a42 - Show all commits
-1
View File
@@ -1,4 +1,3 @@
/target
**/*.env
Cargo.lock
*Cargo.lock
Generated
-4270
View File
File diff suppressed because it is too large Load Diff
+12
View File
@@ -0,0 +1,12 @@
int factorial(int n) {
if (n <= 1) {
return 1;
}
return n * factorial(n - 1);
}
int main() {
int res = factorial(3);
print(res);
return 0;
}
-3985
View File
File diff suppressed because it is too large Load Diff