Common Misunderstandings
From HaskellWiki
(applying a function to a do block is better with $ than parens) |
(Added entries on "Guards" and "Parentheses," and credited them to their source.) |
||
| Line 156: | Line 156: | ||
There are other ways of iterating over lists as well. One advantage of Haskell is that there are often many ways of performing the same action, including iterating over lists. | There are other ways of iterating over lists as well. One advantage of Haskell is that there are often many ways of performing the same action, including iterating over lists. | ||
| + | |||
| + | == Guards == | ||
| + | (The following two tips on guards were contributed by the user "7stud" in the thread "Top beginner mistakes" (see http://article.gmane.org/gmane.comp.lang.haskell.beginners/1121) on the Haskell-Beginners mailing list on Wed, 4 Mar 2009 21:54:05 +0000 (UTC), and subsequently added by [[User:DekuDekuplex|Benjamin L. Russell]].) | ||
| + | |||
| + | Some beginners make the mistake of putting an equals sign after a function name when using guards; ''viz.'': | ||
| + | |||
| + | <haskell> | ||
| + | myfunction x y = | ||
| + | | x < 2 = "a" | ||
| + | | y > 20 = "b" | ||
| + | | otherwise = "c" | ||
| + | </haskell> | ||
| + | |||
| + | This causes a cryptic error message similar to the following to be displayed: | ||
| + | |||
| + | <hask> | ||
| + | dhask.hs:2:4: parse error on input `|' | ||
| + | Failed, modules loaded: none. | ||
| + | </hask> | ||
| + | |||
| + | Another common mistake that some beginners make is writing "if" in front of the guard conditions; ''viz.'': | ||
| + | |||
| + | <haskell> | ||
| + | myfunction x y = | ||
| + | | if x < 2 = "a" | ||
| + | | if y > 20 = "b" | ||
| + | | otherwise = "c" | ||
| + | </haskell> | ||
| + | |||
| + | This causes a mysterious error message similar to the following to be shown: | ||
| + | |||
| + | <hask> | ||
| + | dhask.hs:2:25: parse error on input `=' | ||
| + | Failed, modules loaded: none. | ||
| + | </hask> | ||
| + | |||
| + | In both cases, the error messages don't help to identify the problem. | ||
| + | |||
| + | == Parentheses == | ||
| + | (The following tip on parentheses was contributed by the user "7stud" in the thread "Top beginner mistakes" (see http://article.gmane.org/gmane.comp.lang.haskell.beginners/1121) on the Haskell-Beginners mailing list on Wed, 4 Mar 2009 21:54:05 +0000 (UTC), and subsequently added by [[User:DekuDekuplex|Benjamin L. Russell]].) | ||
| + | |||
| + | Some beginners make the mistake of not putting parentheses around arguments of the form x:xs; ''viz.'': | ||
| + | |||
| + | <haskell> | ||
| + | dosomething x:xs = head xs | ||
| + | </haskell> | ||
| + | |||
| + | This causes an ambiguous error message similar to the following to be shown: | ||
| + | |||
| + | <hask> | ||
| + | dhask.hs:1:0: Parse error in pattern | ||
| + | Failed, modules loaded: none. | ||
| + | </hask> | ||
| + | |||
| + | Here, the error message doesn't help to recognize the problem. | ||
Revision as of 10:53, 5 March 2009
Contents |
1 Common Mistakes and Incorrect Beliefs By Haskell Beginners
People going from zero to Haskell are likely to gain a misunderstanding or miss a point that isn't stressed enough. Here are some mistakes that have been observed from multiple sources.
1.1 Indentation
Perhaps the first trip-up - you might understand that indentation defines where a code block starts and the lack of an equal amount of indentation indicates the previous code block ended. What some miss is thatif boolean then expr1 else expr2
Or they can be on the same line as the if:
if boolean then expr1 else expr2
1.2 If / Then / Else
if-then statements must always include an 'else' portion. It might be best not to think of if-then-else as flow control, as in most imperative languages, but think of it as construction of a value using a well formed expression.
x = b ? y : z;
b is true then x = y otherwise x = z. Notice how this makes no sense without z. Similarly, in Haskell an let x = if b then y -- compare to x = b ? y
x when b is false? One should also recognize that the types returned by the main = do startNetwork <- askUser "Network? " if startNetwork then do iface <- initNetworkInterface handlePackets iface else return ()
main = do startNetwork <- askUser "Network? " when startNetwork $ do iface <- initNetworkInterface handlePackets iface
1.3 do Notation
If the do notation page ever exists I'll advise you to check it out. Until then, understand that a missingSorry this isn't the full picture - for an inverse point of view see do notation considered harmful.
1.4 Iterating Over a List
Some beginners make the mistake of mistaking a single-element list pattern (such ashanoi_shower :: Show a => [(a, a)] -> String hanoi_shower [(a, b)] = "Move " ++ show a ++ " to " ++ show b ++ "."
in the following program:
hanoi :: a -> a -> a -> Int -> [(a, a)] hanoi source using dest n | n == 1 = [(source, dest)] | otherwise = hanoi source dest using (n-1) ++ hanoi source using dest 1 ++ hanoi using source dest (n-1) hanoi_shower :: Show a => [(a, a)] -> String hanoi_shower [(a, b)] = "Move " ++ show a ++ " to " ++ show b ++ "."
The coder tried to run the code in WinHugs as follows:
However, this was the result:
[('a','b'),('a','c')] ++ ([] ++ hanoi 'b' 'a' 'c' (2 - 1))
Here is a corrected version of the code above:
hanoi_shower :: Show a => [(a, a)] -> String hanoi_shower moves = unlines ["Move " ++ show a ++ " to "++ show b ++ "." | (a, b) <- moves]
Here is the result of executing the above code in WinHugs:
Move 'a' to 'b'.
Move 'a' to 'c'.
Move 'b' to 'c'.
Main> putStr (hanoi_shower (hanoi 1 2 3 2))
Move 1 to 2.
Move 1 to 3.
Move 2 to 3.
hanoi_shower :: Show a => [(a, a)] -> String hanoi_shower moves = unlines (map move moves) where move (a, b) = "Move " ++ show a ++ " to "++ show b ++ "."
Another way to map over a list is to use recursion, although this method is considered non-idiomatic Haskell (Haskellers generally prefer using higher-order functions over recursion when possible):
hanoi :: a -> a -> a -> Int -> [(a, a)] hanoi source using dest n | n == 0 = [] | n == 1 = [(source, dest)] | otherwise = hanoi source dest using (n-1) ++ hanoi source using dest 1 ++ hanoi using source dest (n-1) hanoi_shower :: Show a => [(a, a)] -> String hanoi_shower [] = "" hanoi_shower ((a, b):moves) = unlines ["Move " ++ show a ++ " to "++ show b ++ "."] ++ hanoi_shower moves
There are other ways of iterating over lists as well. One advantage of Haskell is that there are often many ways of performing the same action, including iterating over lists.
1.5 Guards
(The following two tips on guards were contributed by the user "7stud" in the thread "Top beginner mistakes" (see http://article.gmane.org/gmane.comp.lang.haskell.beginners/1121) on the Haskell-Beginners mailing list on Wed, 4 Mar 2009 21:54:05 +0000 (UTC), and subsequently added by Benjamin L. Russell.)
Some beginners make the mistake of putting an equals sign after a function name when using guards; viz.:
myfunction x y = | x < 2 = "a" | y > 20 = "b" | otherwise = "c"
This causes a cryptic error message similar to the following to be displayed:
Failed, modules loaded: none.
Another common mistake that some beginners make is writing "if" in front of the guard conditions; viz.:
myfunction x y = | if x < 2 = "a" | if y > 20 = "b" | otherwise = "c"
This causes a mysterious error message similar to the following to be shown:
Failed, modules loaded: none.
In both cases, the error messages don't help to identify the problem.
1.6 Parentheses
(The following tip on parentheses was contributed by the user "7stud" in the thread "Top beginner mistakes" (see http://article.gmane.org/gmane.comp.lang.haskell.beginners/1121) on the Haskell-Beginners mailing list on Wed, 4 Mar 2009 21:54:05 +0000 (UTC), and subsequently added by Benjamin L. Russell.)
Some beginners make the mistake of not putting parentheses around arguments of the form x:xs; viz.:
dosomething x:xs = head xs
This causes an ambiguous error message similar to the following to be shown:
Failed, modules loaded: none.
Here, the error message doesn't help to recognize the problem.
