restructure project
Some checks failed
Build / build (push) Failing after 5m21s
Publish Image / publish (push) Failing after 32s
Test / build (push) Failing after 5m8s

This commit is contained in:
Chuck Smith
2024-03-28 16:20:09 -04:00
parent 362138ff2e
commit fc6ceee02c
93 changed files with 479 additions and 194 deletions

View File

@@ -5,4 +5,10 @@ fib := fn(x) {
return fib(x-1) + fib(x-2)
}
print(fib(35))
N := 35
if (len(args()) == 1) {
N = int(args()[0])
}
print(fib(N))