From 9d722a0b6138827de743f9fe4acbf3f2c1830bb0 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 6 Nov 2023 00:24:11 +0100 Subject: Started creating new docs with wiki --- docs/wiki_src/coding/style.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 docs/wiki_src/coding/style.md (limited to 'docs/wiki_src/coding/style.md') diff --git a/docs/wiki_src/coding/style.md b/docs/wiki_src/coding/style.md new file mode 100644 index 0000000..d0ec7a9 --- /dev/null +++ b/docs/wiki_src/coding/style.md @@ -0,0 +1,36 @@ +# Coding style + +## Scoping + +## If/else + +redundant + +## Head/tail + +redundant + +## Type signatures + +## Recursion + +[Recursion](recursion.md) should almost always be achieved with the +`y`{.bruijn} or `z`{.bruijn} combinators. + +A common coding style in bruijn's standard library is to use the scoped +`rec` function to indicate recursion. You would then use `n+1` +abstraction around `rec` to indicate `n` arguments and the additionally +induced recursive call. + +Example of the `length`{.bruijn} function for lists: + +``` bruijn +# 3 abstractions => two arguments +# 2 is recursive call +# 1 is accumulator (+0) +# 0 is argument (list) +length z [[[rec]]] (+0) ⧗ (List a) → Number + rec 0 [[[case-inc]]] case-end + case-inc 5 ++4 1 + case-end 1 +``` -- cgit v1.2.3