summaryrefslogtreecommitdiff
path: root/tests/recursive.c
diff options
context:
space:
mode:
authorDavid Moc <personal@cdatgoose.org>2026-03-05 23:38:49 +0100
committerDavid Moc <personal@cdatgoose.org>2026-03-05 23:38:49 +0100
commit0385817bb1301a778bb33f8405a435293b9f8905 (patch)
tree53f4b6f13e393bd368c37ba4363826b46940dfd3 /tests/recursive.c
parent262abf9b552a168ef3ae91f91af97683f16420a7 (diff)
Pushing to repo for safety.
Diffstat (limited to 'tests/recursive.c')
-rw-r--r--tests/recursive.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/recursive.c b/tests/recursive.c
new file mode 100644
index 0000000..91fe8cd
--- /dev/null
+++ b/tests/recursive.c
@@ -0,0 +1,11 @@
+int factorial(int n) {
+ if (n <= 1) {
+ return 1;
+ } else {
+ return n * factorial(n - 1);
+ }
+}
+
+int main() {
+ return factorial(4);
+}