-
* [ ] http://dev.stephendiehl.com/fun/lambda_calculus.html
* [ ] https://github.com/helvm/write-you-a-haskell/tree/master/chapter4/untyped
* [ ] https://github.com/helvm/lambda-calculus-maurobringol…
-
In 1935, a gentleman called Alonzo Church came up with a simple scheme that could compute…just about anything. His scheme was called Lambda Calculus. It was a phenomenal innovation, given that there w…
-
Please review my boys :pray:
-
-
-
Hi! This is not really an issue with your code. I'm reaching out because I've been working on Lambda Calculus and just came across your YouTube video, which led me here. I wonder if we can help eac…
-
Isn't LISP better suited to be functional JSON?
-
Hi James, thanks for creating this language, this is a great idea!
I would like to propose a new feature. Currently, functions written in point-free style are quite hard to read:
```
ar squarePlu…
-
## apply
```
# apply combinator create one local variable/function/definition
#\x \f f x @ &
@ apply \x \f f x
@ ! apply
@ & apply
@ |> apply
```
```scheme
& (lambda) ( \ function
do s…
-
This doesnt feel like the correct place to put this but i dont know if there is a more informal way to ask this:
So i am trying to write a game of tictactoe in turnstyle. So far i have tried to map…