Set things up for the next release cycle.

This commit is contained in:
Ernie Pasveer
2022-10-01 09:46:43 -05:00
parent 6f40af315d
commit 4221a79955
9 changed files with 224 additions and 4 deletions
+28
View File
@@ -0,0 +1,28 @@
#include <stdio.h>
#include "debugbreak.h"
//
// https://github.com/scottt/debugbreak
//
int fib(int n) {
int r;
if (n == 0 || n == 1) {
return 1;
}
r = fib(n-1) + fib(n-2);
if (r == 89) {
debug_break();
}
return r;
}
int main() {
printf("%d\n", fib(15));
return 0;
}