summaryrefslogtreecommitdiffhomepage
path: root/haskell.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'haskell.html.markdown')
-rw-r--r--haskell.html.markdown2
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