Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/tusharad/haskell-examples
- Owner: tusharad
- Created: 2023-08-22T12:42:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-21T12:02:35.000Z (7 months ago)
- Last Synced: 2024-06-22T04:49:17.957Z (7 months ago)
- Topics: functional-programming, haskell
- Language: Haskell
- Homepage:
- Size: 24.5 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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