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

https://github.com/turbaszek/haskell-labs

Notes from lectures and Haskell code from labs.
https://github.com/turbaszek/haskell-labs

category-theory functional-programming haskell monads

Last synced: about 1 year ago
JSON representation

Notes from lectures and Haskell code from labs.

Awesome Lists containing this project

README

          

# Functional Programming at WUT

Notes from lectures and codes from labs. This repo has the following structure:

```
- L1
- README.md - lecture notes
- someFile.hs - lab codes
- L2
...
```

[How do you pronounce various operators?](https://www.reddit.com/r/haskell/comments/b7pyqr/monthly_hask_anything_april_2019/ejzc8rn?utm_source=share&utm_medium=web2x)

```
(>=>) - fish
(>>=) - bind
(>>) - then
(:) - cons
(<$>) - fmap
(<*>) - ap, apply, or spaceship
(<>) or (++) - append
(<|>) - or (or maybe alt if I also use (||) somewhere
(.) - dot
```

### Tricks

In ghci `:set -XOverloadedStrings` if `{-# LANGUAGE OverloadedStrings #-}` does not work.

### Additional resources:

[Hask Anything on r/haskell](https://www.reddit.com/r/haskell/comments/b7pyqr/monthly_hask_anything_april_2019/)

http://book.realworldhaskell.org/read/

https://www.reddit.com/r/haskell/

http://www.nyu.edu/projects/barker/Lambda/barendregt.94.pdf

https://github.com/geophf/1HaskellADay