aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: bf64c47a52b05cf7d8ec04fd9419a3964fa56707 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# Lambda Core

Welcome to *Lambda Core*, a repository dedicated to showcasing implementations of the "core" of lambda calculus in every programming language. We aim to create a living library of code snippets that demonstrate:

1. *Boolean Functions*: true, false, not, and, and or.
2. *Church Numerals*: zero, successor and predecessor functions, and the numeral one (derived from successor of zero).
3. *Examples using the above*: Prove they work!

This project is inspired by the classic "hello-world" repo idea, but takes things a step further by introducing some of the most fundamental concepts in functional programming and lambda calculus.

---

## What is the "Lambda Core"?

The *Lambda Core* refers to:

- *Boolean Operations* in lambda calculus:
    - *True* and *False* (often represented as λx.λy.x and λx.λy.y).
    - *not* (logical negation).
    - *and* (logical conjunction).
    - *or* (logical disjunction).
- *Church Numerals*:
    - *Zero* (often λf.λx.x).
    - *Successor Function* (to increment a Church numeral).
    - *Predecessor Function* (to decrement a Church numeral).
    - *One* (either defined directly or via successor of zero).

By implementing these features, you will demonstrate how your chosen language can express or emulate these classic functional concepts.

---

## How to Contribute

We invite you to contribute by adding a folder for a programming language that is not yet present. To do so:

1. *Create a new folder* under languages/firstletterorsymbol/ named after the language you are implementing (e.g., languages/h/haskell, languages/p/python, languages/g/go, etc.).
2. Inside this folder, create:
     - A file named **lambda-core** with the appropriate file extension (e.g., lambda-core.py, lambda-core.hs, lambda-core.go).
     - A *README.md* that explains:
         - How to run your implementation (any dependencies, compilation steps, interpreter requirements, etc.).

3. *Open a Pull Request*:
     - Briefly describe what you did.
     - Link to any official references or documentation used if relevant.

---

## Folder Structure

The repository is organized as follows:

Each language's folder should stand on its own. Ideally, someone could clone the repo, enter your language's folder, follow your instructions, and verify your Lambda Core implementation right away.

---

## Example Contribution Workflow

Here’s a quick example workflow:

1. *Fork* this repository.
2. Create a branch named after your new language or a feature fix.
3. Add a new folder languages/letterorsymbol/mylanguage.
4. Add lambda-core.my-lang and a supporting README.md.
5. Commit and push your changes.
6. *Open a Pull Request* from your fork’s branch into the main branch of this repository.

We will review your submission, ask any clarifying questions, and then merge it once everything looks good.

---

## Why Contribute?

By contributing, you can:
- Show how your favorite language handles functional constructs.
- Learn about the power and simplicity of lambda calculus.
- Collaborate with others who share a passion for languages and functional programming.
- Expand your knowledge by seeing how other languages implement the same concepts.

---

## Need Inspiration?

If you are unfamiliar with lambda calculus, check out these resources:
- [Wikipedia: Lambda Calculus](https://en.wikipedia.org/wiki/Lambda_calculus)
- [Church Booleans](https://en.wikipedia.org/wiki/Church_boolean)
- [Church Numerals](https://en.wikipedia.org/wiki/Church_encoding#Church_numerals)
- [A Tutorial Introduction to the Lambda Calculus](https://personal.utdallas.edu/~gupta/courses/apl/lambda.pdf)

---

## License

This project is licensed under the [MIT License](LICENSE), so please feel free to fork, adapt, and share as you wish.

---

## Final Thoughts

Thank you for checking out *Lambda Core*! We encourage you to join this challenge and contribute. The goal is to build a fun, educational resource that demonstrates the universality of lambda calculus across the diverse landscape of programming languages.

*Happy Coding!*

---

## Bonus Challenge: Recursion with Combinators!

Want to take your implementation to the next level? Here's a bonus challenge:

- Implement recursion using a fixed-point combinator (Y, Z, or another variant) using your already made church numerals and logical operators.
    - Write a factorial, fibonacci, or some other classic recursive function using your combinator.
    - Include examples showing the recursive function in action.

Note: In many languages, achieving recursion or advanced combinators in a pure lambda style can be extremely difficult or even impossible without writing or embedding a specialized lambda interpreter.