misc fixes
Some checks failed
Build / build (push) Successful in 10m45s
Publish Image / publish (push) Failing after 42s
Test / build (push) Successful in 11m9s

This commit is contained in:
2024-04-01 17:44:15 -04:00
parent 99f7553d67
commit fe33fda0ab
8 changed files with 91 additions and 10 deletions

View File

@@ -8,4 +8,10 @@ fib := fn(n, a, b) {
return fib(n - 1, b, a + b)
}
print(fib(35, 0, 1))
N := 35
if (len(args()) > 0) {
N = int(args()[0])
}
print(fib(N, 0, 1))