File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change 2
2
This is a collection of exercises for learning Haskell. Each exercise comes with tests for verifying your solution.
3
3
4
4
I suggest you do the exercises in this order:
5
- * Functions
6
- * Maybe
7
- * PatternMatching
8
- * Recursion
9
- * RecursionSchemes
10
- * UpdateRecords
11
- * HigherOrderFunctions
12
- * QuickCheck
13
- * LogParser
14
- * ProjectEuler
15
- * TextCalculator
16
- * Regex
17
- * BinTree
18
- * Vigenere
5
+ * [ Functions] ( https://github.com/commercialhaskell/haskelldocumentation/blob/master/exercises/Functions/Functions.hs )
6
+ * [ Maybe] ( https://github.com/commercialhaskell/haskelldocumentation/blob/master/exercises/Maybe/Maybe.hs )
7
+ * [ PatternMatching] ( https://github.com/commercialhaskell/haskelldocumentation/blob/master/exercises/PatternMatching/PatternMatching.hs )
8
+ * [ Recursion] ( https://github.com/commercialhaskell/haskelldocumentation/blob/master/exercises/Recursion/Recursion.hs )
9
+ * [ RecursionSchemes] ( https://github.com/commercialhaskell/haskelldocumentation/blob/master/exercises/RecursionSchemes/RecursionSchemes.hs )
10
+ * [ UpdateRecords] ( https://github.com/commercialhaskell/haskelldocumentation/blob/master/exercises/UpdateRecords/UpdateRecords.hs )
11
+ * [ HigherOrderFunctions] ( https://github.com/commercialhaskell/haskelldocumentation/blob/master/exercises/HigherOrderFunctions/HigherOrderFunctions.hs )
12
+ * [ QuickCheck] ( https://github.com/commercialhaskell/haskelldocumentation/blob/master/exercises/QuickCheck/QuickCheck.hs )
13
+ * [ LogParser] ( https://github.com/commercialhaskell/haskelldocumentation/blob/master/exercises/LogParser/LogParser.hs )
14
+ * [ ProjectEuler] ( https://github.com/commercialhaskell/haskelldocumentation/blob/master/exercises/ProjectEuler/ProjectEuler.hs )
15
+ * [ TextCalculator] ( https://github.com/commercialhaskell/haskelldocumentation/blob/master/exercises/TextCalculator/TextCalculator.hs )
16
+ * [ Regex] ( https://github.com/commercialhaskell/haskelldocumentation/blob/master/exercises/Regex/Regex.hs )
17
+ * [ BinTree] ( https://github.com/commercialhaskell/haskelldocumentation/blob/master/exercises/BinTree/BinTree.hs )
18
+ * [ Vigenere] ( https://github.com/commercialhaskell/haskelldocumentation/blob/master/exercises/Vigenere/Vigenere.hs )
19
19
20
20
You are free to use these exercises in workshops and other learning material.
21
21
You can’t perform that action at this time.
0 commit comments