aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/wiki_src/coding/currying.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/wiki_src/coding/currying.md')
-rw-r--r--docs/wiki_src/coding/currying.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/wiki_src/coding/currying.md b/docs/wiki_src/coding/currying.md
new file mode 100644
index 0000000..d84eb0a
--- /dev/null
+++ b/docs/wiki_src/coding/currying.md
@@ -0,0 +1,13 @@
+# Currying
+
+Lambda calculus naturally supports currying -- that is, only partially
+applying a function. In fact *any* function can be applied with *any*
+amount of arguments!
+
+In bruijn, currying is a great way to make functions even more elegant.
+
+Partially applying the `mul`{.bruijn} function:
+
+``` bruijn
+six [0 (+3)] (mul (+2))
+```