#Programming #WebDevelopment 
Just enough Haskell to fit on a napkin, more than practical enough to go to production.
# Operators
## Style
| Infix Style      | Prefix Style               |
| ---------------- | -------------------------- |
| `3 + 4 == 8 + 1` | `(==) ((+) 3 4) ((-) 8 1)` |
## Infix Order of Precedence
- Normal function calls have top precedence
- Arithmetic operators are *left associative*
| Expression       | Result |
| ---------------- | ------ |
| `10 - 6 - 3`     | `1`    |
| `((10 - 6) - 3)` | `1`    |
| `(10 - (6 - 3))` | `7`    |