aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXu, Junfeng2022-10-24 19:24:50 +0000
committerXu, Junfeng2022-10-24 19:24:50 +0000
commit0aa0d695f8fef33b02cbf04fbd6825bd2cbc6de1 (patch)
treef1c0b50f169bc05a49840df9524427967e5a1c21
parent0ed78b5a990776b0db8c794b4e9ca415fee86fce (diff)
add haskell entry
-rw-r--r--entries/nxjfxu/fib.hs5
-rw-r--r--people.json11
2 files changed, 16 insertions, 0 deletions
diff --git a/entries/nxjfxu/fib.hs b/entries/nxjfxu/fib.hs
new file mode 100644
index 0000000..0f0d871
--- /dev/null
+++ b/entries/nxjfxu/fib.hs
@@ -0,0 +1,5 @@
+fib :: Int -> Int
+fib = (fibs !!)
+ where
+ fibs = 0 : 1 : [fibs !! (i - 2) + fibs !! (i - 1) | i <- [2..]]
+
diff --git a/people.json b/people.json
index 26dc1db..e63fc4d 100644
--- a/people.json
+++ b/people.json
@@ -213,5 +213,16 @@
"link": "./entries/laelath/fib.bf"
}
]
+ },
+ {
+ "github": "nxjfxu",
+ "name": "Junfeng Xu",
+ "title": "MSc Student, UBC",
+ "entries": [
+ {
+ "name": "ouroboros",
+ "link": "./entries/nxjfxu/fib.hs"
+ }
+ ]
}
]