updated gitignore

This commit is contained in:
2026-01-29 19:33:30 +00:00
parent 259746558f
commit 782c842a42
4 changed files with 12 additions and 8256 deletions
-1
View File
@@ -1,4 +1,3 @@
/target /target
**/*.env **/*.env
Cargo.lock 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