Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ We say that the `*` operator has _higher [precedence][wikipedia-precedence]_ tha
In logic similar ambiguities exist, and these are similarly resolved.
By convention – and so in Haskell –

- _and_ has higher precedence than _or_, and
- _and_ has higher precedence than _or_.
- _not_ has higher precedence than both _and_ and _or_.

For example, `p || q && r` means the same as `p || (q && r)`.
Expand Down