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
- Host: GitHub
- URL: https://github.com/lucananni93/learn_haskell
- Owner: lucananni93
- Created: 2019-03-04T09:44:28.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-10T23:30:15.000Z (almost 7 years ago)
- Last Synced: 2025-02-15T10:46:59.887Z (10 months ago)
- Topics: haskell, haskell-exercises, haskell-language, haskell-learning, haskell-tutorial
- Language: Jupyter Notebook
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)