Hidden features of Haskell - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T22:11:01Z http://stackoverflow.com/feeds/question/211216 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/211216/hidden-features-of-haskell 22 Hidden features of Haskell Claudiu 2008-10-17T06:23:08Z 2009-10-08T08:51:26Z <p>What are the lesser-known but useful features of the Haskell programming language. (I understand the language itself is lesser-known, but work with me. Even explanations of the simple things in Haskell, like defining the Fibonacci sequence with one line of code, will get upvoted by me). </p> <ul> <li>Try to limit answers to the Haskell core</li> <li>One feature per answer</li> <li>Give an example and short description of the feature, not just a link to documentation</li> <li>Label the feature using bold title as the first line</li> </ul> <p>This follows after the following excellent questions:</p> <p>See also:</p> <ul> <li><a href="http://stackoverflow.com/questions/132241/hidden-features-of-c">Hidden features of C</a></li> <li><a href="http://stackoverflow.com/questions/9033/hidden-features-of-c">Hidden features of C#</a></li> <li><a href="http://stackoverflow.com/questions/75538/hidden-features-of-c">Hidden features of C++</a></li> <li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">Hidden features of Python</a></li> <li><a href="http://stackoverflow.com/questions/15496/hidden-features-of-java">Hidden features of Java</a></li> <li><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript">Hidden features of JavaScript</a></li> <li><a href="http://stackoverflow.com/questions/63998/hidden-features-of-ruby">Hidden features of Ruby</a></li> <li><a href="http://stackoverflow.com/questions/61401/hidden-features-of-php">Hidden features of PHP</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl">Hidden features of Perl</a></li> <li><a href="http://stackoverflow.com/questions/102084/hidden-features-of-vbnet">Hidden features of VB.Net</a></li> </ul> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/212014#212014 12 Answer by Jonathan Tran for Hidden features of Haskell Jonathan Tran 2008-10-17T13:00:04Z 2008-10-17T13:00:04Z <p><strong>Optional Layout</strong></p> <p>You can use explicit braces and semicolons instead of whitespace (aka layout) to delimit blocks.</p> <pre><code>let { x = 40; y = 2 } in x + y </code></pre> <p>... or equivalently...</p> <pre><code>let { x = 40; y = 2 } in x + y </code></pre> <p>... instead of ...</p> <pre><code>let x = 40 y = 2 in x + y </code></pre> <p>Because layout is not required, Haskell programs can be straightforwardly produced by other programs.</p> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/212103#212103 12 Answer by Santiago Palladino for Hidden features of Haskell Santiago Palladino 2008-10-17T13:27:09Z 2008-10-17T20:37:53Z <p><strong>Operator Fixity</strong></p> <p>You can use the <a href="http://haskell.org/tutorial/functions.html#sect4.4.2" rel="nofollow">infix, infixl or infixr</a> keywords to define operators associativity and precedence. Example taken from the <a href="http://www.zvon.org/other/haskell/Outputsyntax/fixityQdeclaration_reference.html" rel="nofollow">reference</a>:</p> <pre><code>main = print (1 +++ 2 *** 3) infixr 6 +++ infixr 7 ***,/// (+++) :: Int -&gt; Int -&gt; Int a +++ b = a + 2*b (***) :: Int -&gt; Int -&gt; Int a *** b = a - 4*b (///) :: Int -&gt; Int -&gt; Int a /// b = 2*a - 3*b Output: -19 </code></pre> <p>The number (0 to 9) after the infix allows you to define the precedence of the operator, being 9 the strongest. Infix means no associativity, whereas infixl associates left and infixr associates right.</p> <p>This allows you to define complex operators to do high level operations written as simple expressions.</p> <p>Note that you can also use binary functions as operators if you place them between backticks:</p> <pre><code>main = print (a `foo` b) foo :: Int -&gt; Int -&gt; Int foo a b = a + b </code></pre> <p>And as such, you can also define precedence for them:</p> <pre><code>infixr 4 `foo` </code></pre> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/212131#212131 10 Answer by Jonathan Tran for Hidden features of Haskell Jonathan Tran 2008-10-17T13:34:56Z 2008-10-17T14:56:24Z <p><strong><code>seq</code> and <code>($!)</code> <a href="http://users.aber.ac.uk/afc/stricthaskell.html#seq" rel="nofollow">only evaluate</a> enough to check that something is not bottom.</strong></p> <p>The following program will only print "there".</p> <pre><code>main = print "hi " `seq` print "there" </code></pre> <p>For those unfamiliar with Haskell, Haskell is non-strict in general, meaning that an argument to a function is only evaluated if it is needed.</p> <p>For example, the following prints "ignored" and terminates with success.</p> <pre><code>main = foo (error "explode!") where foo _ = print "ignored" </code></pre> <p><code>seq</code> is known to change that behavior by evaluating to bottom if its first argument is bottom.</p> <p>For example:</p> <pre><code>main = error "first" `seq` print "impossible to print" </code></pre> <p>... or equivalently, without infix ...</p> <pre><code>main = seq (error "first") (print "impossible to print") </code></pre> <p>... will blow up with an error on "first". It will never print "impossible to print".</p> <p>So it might be a little surprising that even though <code>seq</code> is strict, it won't evaluate something the way eager languages evaluate. In particular, it won't try to force all the positive integers in the following program. Instead, it will check that <code>[1..]</code> isn't bottom (which can be found immediately), print "done", and exit.</p> <pre><code>main = [1..] `seq` print "done" </code></pre> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/212767#212767 7 Answer by Santiago Palladino for Hidden features of Haskell Santiago Palladino 2008-10-17T16:02:12Z 2008-10-17T16:02:12Z <p><strong>Infinite Lists</strong></p> <p>Since you mentioned fibonacci, there is a very elegant way of <a href="http://www.haskell.org/tutorial/patterns.html#tut-lazy-patterns" rel="nofollow">generating fibonacci numbers</a> from an infinite list like this:</p> <pre><code>fib@(1:tfib) = 1 : 1 : [ a+b | (a,b) &lt;- zip fib tfib ] </code></pre> <p>The @ operator allows you to use pattern matching on the 1:tfib structure while still referring to the whole pattern as fib. </p> <p>Note that the comprehension list enters an infinite recursion, generating an infinite list. However, you can request elements from it or operate them, as long as you request a finite amount:</p> <pre><code>take 10 fib </code></pre> <p>You can also apply an operation to all elements before requesting them:</p> <pre><code>take 10 (map (\x -&gt; x+1) fib) </code></pre> <p>This is thanks to Haskell's lazy evaluation of parameters and lists.</p> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/213229#213229 9 Answer by ephemient for Hidden features of Haskell ephemient 2008-10-17T18:14:31Z 2008-10-18T18:26:53Z <p><strong>Shorthand for a common list operation</strong></p> <p>The following are equivalent:</p> <pre><code>concat $ map f list concatMap f list list &gt;&gt;= f </code></pre> <h2>Edit</h2> <p>Since more details were requested...</p> <pre><code>concat :: [[a]] -&gt; [a] </code></pre> <p><code>concat</code> takes a list of lists and concatenates them into a single list.</p> <pre><code>map :: (a -&gt; b) -&gt; [a] -&gt; [b] </code></pre> <p><code>map</code> maps a function over a list.</p> <pre><code>concatMap :: (a -&gt; [b]) -&gt; [a] -&gt; [b] </code></pre> <p><code>concatMap</code> is equivalent to <code>(.) concat . map</code>: map a function over a list, and concatenate the results.</p> <pre><code>class Monad m where (&gt;&gt;=) :: m a -&gt; (a -&gt; m b) -&gt; m b return :: a -&gt; m a </code></pre> <p>A <code>Monad</code> has a <em>bind</em> operation, which is called <code>&gt;&gt;=</code> in Haskell (or its sugared <code>do</code>-equivalent). List, aka <code>[]</code>, is a <code>Monad</code>. If we substitute <code>[]</code> for <code>m</code> in the above:</p> <pre><code>instance Monad [] where (&gt;&gt;=) :: [a] -&gt; (a -&gt; [b]) -&gt; [b] return :: a -&gt; [a] </code></pre> <p>What's the natural thing for the <code>Monad</code> operations to do on a list? We have to satisfy the monad laws,</p> <pre><code>return a &gt;&gt;= f == f a ma &gt;&gt;= (\a -&gt; return a) == ma (ma &gt;&gt;= f) &gt;&gt;= g == ma &gt;&gt;= (\a -&gt; f a &gt;&gt;= g) </code></pre> <p>You can verify that these laws hold if we use the implementation</p> <pre><code>instance Monad [] where (&gt;&gt;=) = concatMap return = (:[]) return a &gt;&gt;= f == [a] &gt;&gt;= f == concatMap f [a] == f a ma &gt;&gt;= (\a -&gt; return a) == concatMap (\a -&gt; [a]) ma == ma (ma &gt;&gt;= f) &gt;&gt;= g == concatMap g (concatMap f ma) == concatMap (concatMap g . f) ma == ma &gt;&gt;= (\a -&gt; f a &gt;&gt;= g) </code></pre> <p>This is, in fact, the behavior of <code>Monad []</code>. As a demonstration,</p> <pre><code>double x = [x,x] main = do print $ map double [1,2,3] -- [[1,1],[2,2],[3,3]] print . concat $ map double [1,2,3] -- [1,1,2,2,3,3] print $ concatMap double [1,2,3] -- [1,1,2,2,3,3] print $ [1,2,3] &gt;&gt;= double -- [1,1,2,2,3,3] </code></pre> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/213426#213426 5 Answer by ephemient for Hidden features of Haskell ephemient 2008-10-17T18:59:43Z 2008-10-17T21:53:10Z <p><strong>Readable function composition</strong></p> <p><code>Prelude</code> defines <code>(.)</code> to be mathematical function composition; that is, <code>g . f</code> first applies <code>f</code>, then applies <code>g</code> to the result.</p> <p>If you <code>import Control.Arrow</code>, the following are equivalent:</p> <pre><code>g . f f &gt;&gt;&gt; g </code></pre> <p><code>Control.Arrow</code> provides an <code>instance Arrow (-&gt;)</code>, and this is nice for people who don't like to read function application backwards.</p> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/213428#213428 5 Answer by ephemient for Hidden features of Haskell ephemient 2008-10-17T19:00:19Z 2008-10-17T21:55:17Z <p><strong>Avoiding parentheses</strong></p> <p>The <code>(.)</code> and <code>($)</code> functions in <code>Prelude</code> have very convenient fixities, letting you avoid parentheses in many places. The following are equivalent:</p> <pre><code>f (g (h x)) f $ g $ h x f . g $ h x f . g . h $ x </code></pre> <p><code>flip</code> helps too, the following are equivalent:</p> <pre><code>map (\a -&gt; {- some long expression -}) list flip map list $ \a -&gt; {- some long expression -} </code></pre> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/213431#213431 8 Answer by ephemient for Hidden features of Haskell ephemient 2008-10-17T19:00:43Z 2008-10-17T21:49:54Z <p><strong>Nestable multiline comments</strong>.</p> <pre><code>{- inside a comment, {- inside another comment, -} still commented! -} </code></pre> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/213434#213434 9 Answer by ephemient for Hidden features of Haskell ephemient 2008-10-17T19:01:06Z 2008-10-17T21:58:41Z <p><strong>Pretty guards</strong></p> <p><code>Prelude</code> defines <code>otherwise = True</code>, making complete guard conditions read very naturally.</p> <pre><code>fac n | n &lt; 1 = 1 | otherwise = n * fac (n-1) </code></pre> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/213436#213436 7 Answer by ephemient for Hidden features of Haskell ephemient 2008-10-17T19:01:30Z 2008-10-17T21:56:51Z <p><strong>If you're looking for a list or higher-order function, it's already there</strong></p> <p>There's sooo many convenience and higher-order functions in the standard library.</p> <pre><code>-- factorial can be written, using the strict HOF foldl': fac n = Data.List.foldl' (*) 1 [1..n] -- there's a shortcut for that: fac n = product [1..n] -- and it can even be written pointfree: fac = product . enumFromTo 1 </code></pre> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/213438#213438 6 Answer by ephemient for Hidden features of Haskell ephemient 2008-10-17T19:01:51Z 2008-10-17T21:59:35Z <p><strong>Flexible specification of module imports and exports</strong></p> <p>Importing and exporting is nice.</p> <pre><code>module Foo (module Bar, blah) -- this is module Foo, export everything that Bar expored, plus blah import qualified Some.Long.Name as Short import Some.Long.Name (name) -- can import multiple times, with different options import Baz hiding (blah) -- import everything from Baz, except something named 'blah' </code></pre> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/213441#213441 8 Answer by ephemient for Hidden features of Haskell ephemient 2008-10-17T19:02:06Z 2008-10-19T15:10:39Z <p><strong>My brain just exploded</strong></p> <p>If you try to compile this code:</p> <pre><code>{-# LANGUAGE ExistentialQuantification #-} data Foo = forall a. Foo a ignorefoo f = 1 where Foo a = f </code></pre> <p>You will get this error message:</p> <pre>$ ghc Foo.hs Foo.hs:3:22: My brain just exploded. I can't handle pattern bindings for existentially-quantified constructors. Instead, use a case-expression, or do-notation, to unpack the constructor. In the binding group for Foo a In a pattern binding: Foo a = f In the definition of `ignorefoo': ignorefoo f = 1 where Foo a = f </pre> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/213956#213956 16 Answer by ephemient for Hidden features of Haskell ephemient 2008-10-17T21:49:02Z 2008-10-17T22:02:33Z <p><strong>User-defined control structures</strong></p> <p>Haskell has no shorthand ternary operator. The built-in <code>if</code>-<code>then</code>-<code>else</code> is always ternary, and is an expression (imperative languages tend to have <code>?:</code>=expression, <code>if</code>=statement). If you want, though,</p> <pre><code>True ? x = const x False ? _ = id </code></pre> <p>will define <code>(?)</code> to be the ternary operator:</p> <pre><code>(a ? b $ c) == (if a then b else c) </code></pre> <p>You'd have to resort to macros in most other languages to define your own short-circuiting logical operators, but Haskell is a fully lazy language, so it just works.</p> <pre><code>-- prints "I'm alive! :)" main = True ? putStrLn "I'm alive! :)" $ error "I'm dead :(" </code></pre> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/750002#750002 7 Answer by Norman Ramsey for Hidden features of Haskell Norman Ramsey 2009-04-15T01:54:02Z 2009-04-15T01:54:02Z <p>Generalized algebraic data types. Here's an example interpreter where the type system lets you cover all the cases:</p> <pre><code>{-# LANGUAGE GADTs #-} module Exp where data Exp a where Num :: (Num a) =&gt; a -&gt; Exp a Bool :: Bool -&gt; Exp Bool Plus :: (Num a) =&gt; Exp a -&gt; Exp a -&gt; Exp a If :: Exp Bool -&gt; Exp a -&gt; Exp a -&gt; Exp a Lt :: (Num a, Ord a) =&gt; Exp a -&gt; Exp a -&gt; Exp Bool Lam :: (a -&gt; Exp b) -&gt; Exp (a -&gt; b) -- higher order abstract syntax App :: Exp (a -&gt; b) -&gt; Exp a -&gt; Exp b -- deriving (Show) -- failse eval :: Exp a -&gt; a eval (Num n) = n eval (Bool b) = b eval (Plus e1 e2) = eval e1 + eval e2 eval (If p t f) = eval $ if eval p then t else f eval (Lt e1 e2) = eval e1 &lt; eval e2 eval (Lam body) = \x -&gt; eval $ body x eval (App f a) = eval f $ eval a instance Eq a =&gt; Eq (Exp a) where e1 == e2 = eval e1 == eval e2 instance Show (Exp a) where show e = "&lt;exp&gt;" -- very weak show instance instance (Num a) =&gt; Num (Exp a) where fromInteger = Num (+) = Plus </code></pre> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/954901#954901 5 Answer by Martijn for Hidden features of Haskell Martijn 2009-06-05T08:54:07Z 2009-06-05T08:54:07Z <p><strong>Patterns in top-level bindings</strong></p> <pre><code>five :: Int Just five = Just 5 a, b, c :: Char [a,b,c] = "abc" </code></pre> <p>How cool is that! Saves you that call to <code>fromJust</code> and <code>head</code> every now and then.</p> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/1035661#1035661 7 Answer by yairchu for Hidden features of Haskell yairchu 2009-06-23T22:45:42Z 2009-07-06T20:01:40Z <p><strong>Hoogle</strong></p> <p>Hoogle is your friend. I admit, it's not part of the "core", so <code>cabal install hoogle</code></p> <p>Now you know how "if you're looking for a higher-order function, it's already there" (<a href="http://stackoverflow.com/questions/211216/hidden-features-of-haskell/213436#213436">ephemient's comment</a>). But how do you find that function? With hoogle!</p> <pre><code>$ hoogle "Num a =&gt; [a] -&gt; a" Prelude product :: Num a =&gt; [a] -&gt; a Prelude sum :: Num a =&gt; [a] -&gt; a $ hoogle "[Maybe a] -&gt; [a]" Data.Maybe catMaybes :: [Maybe a] -&gt; [a] $ hoogle "Monad m =&gt; [m a] -&gt; m [a]" Prelude sequence :: Monad m =&gt; [m a] -&gt; m [a] $ hoogle "[a] -&gt; [b] -&gt; (a -&gt; b -&gt; c) -&gt; [c]" Prelude zipWith :: (a -&gt; b -&gt; c) -&gt; [a] -&gt; [b] -&gt; [c] </code></pre> <p>The hoogle-google programmer is not able to write his programs on paper by himself the same way he does with the help of the computer. But he and the machine together are a forced not* to be reckoned with.</p> <p>Btw, if you liked hoogle be sure to check out hlint!</p> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/1088284#1088284 3 Answer by Edward Kmett for Hidden features of Haskell Edward Kmett 2009-07-06T17:38:53Z 2009-07-06T17:38:53Z <p><strong>Equational Reasoning</strong></p> <p>Haskell, being purely functional allows you to read an equal sign as a real equal sign (in the absence of non-overlapping patterns).</p> <p>This allows you to substitute definitions directly into code, and in terms of optimization gives a lot of leeway to the compiler about when stuff happens.</p> <p>A good example of this form of reasoning can be found here:</p> <p><a href="http://www.haskell.org/pipermail/haskell-cafe/2009-March/058603.html" rel="nofollow">http://www.haskell.org/pipermail/haskell-cafe/2009-March/058603.html</a></p> <p>This also manifests itself nicely in the form of laws or RULES pragmas expected for valid members of an instance, for instance the Monad laws:</p> <ol> <li>returrn a >>= f == f a</li> <li>m >>= return == m</li> <li>(m >>= f) >>= g == m >>= (\x -> f x >>= g)</li> </ol> <p>can often be used to simplify monadic code.</p> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/1088316#1088316 1 Answer by Edward Kmett for Hidden features of Haskell Edward Kmett 2009-07-06T17:46:13Z 2009-07-06T17:46:13Z <p><strong>Free Theorems</strong></p> <p>Phil Wadler introduced us to the notion of a <a href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.38.9875" rel="nofollow">free theorem</a> and we've been abusing them in Haskell ever since.</p> <p>These wonderful artifacts of Hindley-Milner-style type systems help out with equational reasoning by using parametricity to tell you about what a function <em>will not</em> do.</p> <p>For instance, there are two laws that every instance of Functor should satisfy:</p> <ol> <li>forall f g. fmap f . fmap g = fmap (f . g)</li> <li>fmap id = id</li> </ol> <p>But, the free theorem tells us we need not bother proving the first one, but given the second it comes for 'free' just from the type signature!</p> <pre><code>fmap :: Functor f =&gt; (a -&gt; b) -&gt; f a -&gt; f b </code></pre> <p>You need to be a bit careful with laziness, but this is partially covered in the original paper, and in Janis Voigtlaender's <a href="http://portal.acm.org/citation.cfm?id=982962.964010" rel="nofollow">more recent paper</a> on free theorems in the presence of <code>seq</code>.</p> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/1088522#1088522 1 Answer by Dario for Hidden features of Haskell Dario 2009-07-06T18:26:23Z 2009-07-06T18:26:23Z <p><strong>Enhanced pattern matching</strong></p> <ul> <li>Jazy patterns</li> <li><p>Irrefutable patterns</p> <pre><code>let ~(Just x) = x </code></pre></li> </ul> <p>See <a href="http://www.haskell.org/tutorial/patterns.html" rel="nofollow">pattern matching</a></p> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/1088529#1088529 0 Answer by Dario for Hidden features of Haskell Dario 2009-07-06T18:28:24Z 2009-07-06T18:28:24Z <p><strong>Monads</strong></p> <p>They are not that hidden, but they are simply everywhere, even where you don't think of them (Lists, Maybe-Types) ...</p> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/1088546#1088546 2 Answer by Dario for Hidden features of Haskell Dario 2009-07-06T18:31:18Z 2009-07-09T18:25:49Z <p><strong>Parallel list comprehension</strong></p> <p>(Special GHC-feature)</p> <pre><code> fibs = 0 : 1 : [ a + b | a &lt;- fibs | b &lt;- tail fibs ] </code></pre> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/1092209#1092209 3 Answer by Edward Kmett for Hidden features of Haskell Edward Kmett 2009-07-07T13:00:51Z 2009-07-07T13:00:51Z <p><strong>Laziness</strong></p> <p>Ubiquitous laziness means you can do things like define </p> <pre><code>fibs = 1 : 1 : zipWith (+) fibs (tail fibs) </code></pre> <p>But it also provides us with a lot of more subtle benefits in terms of syntax and reasoning.</p> <p>For instance, due to strictness ML has to deal with the <a href="http://www.strangelights.com/fsharp/wiki/default.aspx/FSharpWiki/ValueRestriction.html" rel="nofollow">value restriction</a>, and is very careful to track circular let bindings, but in Haskell, we can let every let be recursive and have no need to distinguish between <code>val</code> and <code>fun</code>. This removes a major syntactic wart from the language.</p> <p>This indirectly gives rise to our lovely <code>where</code> clause, because we can safely move computations that may or may not be used out of the main control flow and let laziness deal with sharing the results.</p> <p>We can replace (almost) all of those ML style functions that need to take () and return a value, with just a lazy computation of the value. There are reasons to avoid doing so from time to time to avoid leaking space with <a href="http://www.haskell.org/haskellwiki/Constant%5Fapplicative%5Fform" rel="nofollow">CAFs</a>, but such cases are rare.</p> <p>Finally, it permits unrestricted eta-reduction (<code>\x -&gt; f x</code> can be replaced with f). This makes combinator oriented programming for things like parser combinators much more pleasant than working with similar constructs in a strict language.</p> <p>This helps you when reasoning about programs in point-free style, or about rewriting them into point-free style and reduces argument noise.</p> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/1536510#1536510 2 Answer by Martijn for Hidden features of Haskell Martijn 2009-10-08T08:51:26Z 2009-10-08T08:51:26Z <p><code>let 5 = 6 in ...</code> is valid Haskell.</p>