diff options
author | Alex Altair <alexanderaltair@gmail.com> | 2021-10-31 04:58:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-31 12:58:33 +0100 |
commit | 9892df9ba9a0ec683b6e7b52e90705331a67e134 (patch) | |
tree | 2c01e660d88f2e1146ceb1c81c93a0c986dfb90e /haskell.html.markdown | |
parent | 3dd9becb0fb3a350644aad3607e64dae58299ffd (diff) |
Add boolean and and or (#4259)
Diffstat (limited to 'haskell.html.markdown')
-rw-r--r-- | haskell.html.markdown | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/haskell.html.markdown b/haskell.html.markdown index 328da5c9..29712570 100644 --- a/haskell.html.markdown +++ b/haskell.html.markdown @@ -41,6 +41,8 @@ False -- Boolean operations not True -- False not False -- True +True && False -- False +True || False -- True 1 == 1 -- True 1 /= 1 -- False 1 < 10 -- True |