An open API service indexing awesome lists of open source software.

https://github.com/lucananni93/learn_haskell

My attempt at learning haskell
https://github.com/lucananni93/learn_haskell

haskell haskell-exercises haskell-language haskell-learning haskell-tutorial

Last synced: 8 months ago
JSON representation

My attempt at learning haskell

Awesome Lists containing this project

README

          

# Learning Haskell

This repository hosts my attempts at learning the functional programming language Haskell.

## Part 1 - [Learn You a Haskell for Great Good!](http://learnyouahaskell.com/)
A went through the very well done tutorial [Learn You a Haskell for Great Good!](http://learnyouahaskell.com/) by Miran Lipovača. It provides an hands-on introduction to the phylosophy and the syntax of the language.

In the [corresponding folder](./learn_you_a_haskell_for_great_good) I go through the various chapters of the book in the form of [iHaskell notebooks](https://github.com/gibiansky/IHaskell).

1. [Starting Out](./learn_you_a_haskell_for_great_good/01_Starting_Out.ipynb)
2. [Types and Typeclasses](./learn_you_a_haskell_for_great_good/02_Types_and_Typeclasses.ipynb)
3. [Syntax in Functions](./learn_you_a_haskell_for_great_good/03_Syntax_in_Functions.ipynb)
4. [Recursion](./learn_you_a_haskell_for_great_good/04_Recursion.ipynb)
5. [Higher order functions](./learn_you_a_haskell_for_great_good/05_Higher_order_functions.ipynb)
6. [Modules](./learn_you_a_haskell_for_great_good/05_Modules.ipynb)