fixed ebnf for lambda

main
John Sarkela 1 month ago
parent 5ec7563f2a
commit 4b97ccd71a

@ -9,8 +9,7 @@ The **Church-Turing Thesis** states that the functions defined by lambda calculu
## The Grammar of Lambda
```
Lambda ::= Variable | Group | Abstraction | Application;
Variable ::= <letter>
Lambda ::= <variable> | Group | Abstraction | Application;
Group ::= '(' Lambda ')';
Abstraction ::= 'λ' <variable> '.' Lambda;
Application ::= Lambda Lambda

Loading…
Cancel
Save