Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/tusharad/haskell-examples

Collection of Concept-wise Haskell programs for learning.
https://github.com/tusharad/haskell-examples

functional-programming haskell

Last synced: 23 days ago
JSON representation

Collection of Concept-wise Haskell programs for learning.

Awesome Lists containing this project

README

        

# haskell-examples

Haskell is statically typed, purely functional programming language. Despite being so good, One of the biggest problem, newcomers face while learning haskell is the lack tutorials/documenation. The online learning resource for haskell is quite low, compared with other languages such as Java, Python etc. Hence, I am buiilding repo, containing concept-wise examples, which will new programmers to learn the language as well as experinced haskell programmers can use this as a reference mannual.

I will also try to write theory in each section's `README`.

I will also be solving hackerrank problems using Haskell.

## Contents
- Foreign Functions Interface
- Recursion
- newtype

## Upcoming Material
- Types
- Typeclasses
- Pattern Matching
- Lists
- Maybe & Either
- Maps
- Functors
- Applicatives
- Monads
- Testing
- Unspecific