Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
Mimsqueeze authored Oct 25, 2024
1 parent f063175 commit 59b8222
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions discussions/d9_lambda_calc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ a lambda function.
### Explicit Rules to remove ambiguity
- Expressions $e$ are left associative
```
a b c means (a b) c
a b c means ((a b) c)
```
- The scope of a function goes until the **end of the entire expression** or until a (unmatched) parenthesis is reached
```
λx .λy. a b means λx. (λy. (a b))
λx. λy. a b means (λx. (λy. (a b)))
```

### Alpha Conversion
Expand Down

0 comments on commit 59b8222

Please sign in to comment.