From 9892df9ba9a0ec683b6e7b52e90705331a67e134 Mon Sep 17 00:00:00 2001 From: Alex Altair Date: Sun, 31 Oct 2021 04:58:33 -0700 Subject: Add boolean and and or (#4259) --- haskell.html.markdown | 2 ++ 1 file changed, 2 insertions(+) (limited to 'haskell.html.markdown') 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 -- cgit v1.2.3 From f6c70b2716371655c5dfc157cfe848b2c9df2ba9 Mon Sep 17 00:00:00 2001 From: "Stanislav (Stanley) Modrak" <44023416+smith558@users.noreply.github.com> Date: Fri, 25 Aug 2023 05:06:35 +0100 Subject: [haskell/en] Add up-to-date community version of LYAH tutorial (#4341) * Add up-to-date community version of LYAH tutorial * Update haskell.html.markdown --- haskell.html.markdown | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'haskell.html.markdown') diff --git a/haskell.html.markdown b/haskell.html.markdown index 29712570..edb4121d 100644 --- a/haskell.html.markdown +++ b/haskell.html.markdown @@ -3,6 +3,7 @@ language: Haskell filename: learnhaskell.hs contributors: - ["Adit Bhargava", "http://adit.io"] + - ["Stanislav Modrak", "https://stanislav.gq"] --- Haskell was designed as a practical, purely functional programming @@ -602,6 +603,6 @@ qsort (p:xs) = qsort lesser ++ [p] ++ qsort greater There are two popular ways to install Haskell: The traditional [Cabal-based installation](http://www.haskell.org/platform/), and the newer [Stack-based process](https://www.stackage.org/install). You can find a much gentler introduction from the excellent -[Learn you a Haskell](http://learnyouahaskell.com/), +[Learn you a Haskell](http://learnyouahaskell.com/) (or [up-to-date community version](https://learnyouahaskell.github.io/)), [Happy Learn Haskell Tutorial](http://www.happylearnhaskelltutorial.com/) or [Real World Haskell](http://book.realworldhaskell.org/). -- cgit v1.2.3