aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--entries/jj/nim/fib.nim17
-rw-r--r--people.json11
2 files changed, 28 insertions, 0 deletions
diff --git a/entries/jj/nim/fib.nim b/entries/jj/nim/fib.nim
new file mode 100644
index 0000000..a12f8e6
--- /dev/null
+++ b/entries/jj/nim/fib.nim
@@ -0,0 +1,17 @@
+func fib(n: Natural): Natural =
+ if n < 2:
+ return n
+ else:
+ return fib(n-1) + fib(n-2)
+
+func fib2(n: int, a = 0, b = 1): int =
+ return if n == 0: a else: fib2(n-1, b, a+b)
+
+iterator fib3: int =
+ var a = 0
+ var b = 1
+ while true:
+ yield a
+ swap a, b
+ b += a
+
diff --git a/people.json b/people.json
index dd1b05c..297778c 100644
--- a/people.json
+++ b/people.json
@@ -553,5 +553,16 @@
"link": "./entries/kekerr/fib.ts"
}
]
+ },
+ {
+ "github": "j-james",
+ "name": "JJ",
+ "title": "BSc, UBC",
+ "entries": [
+ {
+ "name": "nim",
+ "link": "./entries/jj/nim/fib.nim"
+ }
+ ]
}
]