This course is designed to teach students Haskell from zero to everything needed to work with Marlowe and Plutus. The course itself doesn't contain content specific to Marlowe or Plutus. So, if you want to use it to learn Haskell for other purposes, you can! ๐
For a more detailed explanation, keep reading or watch the introduction video:
In the outline below, there are clear stopping points (for both Marlowe and Plutus) where we deem you to know enough Haskell to effectively use the technology.
To go through the interactive lessons, go to your chosen lesson's outline inside "What we'll cover" and click on the button that looks like the one below. If the page loads with a "500: Internal Server Error" just refresh it, and it should be fine. At the top, you will see a console that displays the progress of preparing your interactive lesson. During this time, you can scroll down and look at the lesson, that is displayed non-interactively.
And to see the video, click on the button that looks like this:
- Clone this repository.
- Create a GitPod account.
- Click this button to create a remote dev environment:
- Select the
Homework/HomeworkXX
folder with the homework you want to complete. - Follow the instructions inside the app/Main.hs file.
- Check the solutions in the "solutions" branch!
Haskell-Course
| |
| |---- Homework
| |
| |---- Homework01 (Homework for lesson 01)
| |---- Homework02 (Homework for lesson 02)
| ...
|
|-------- lessons (Lessons in Jupyter notebook format. Access through Binder.)
|
|---- 1-Introduction-to-haskell
|---- 2-Functions-Data-Types-and-Signatures
Everything else can be safely ignored
This is a tentative outline. Changes can (and will) be made as we advance with the course and gather feedback from students.
If there are no buttons on a lesson, it means that it's not published yet.
- Intro to the course and lectures
- What weโll cover
- Repository structure
- Intro to Haskell
- How to open and use JupyterLab
- Purely functional programming language
- Basic syntax
- Haskell Type system
- Laziness
- GHC (and GHCi)
- GitPod
- How to open and use GitPod
- Example of how to complete a homework assignment.
- Pragmatic intro to types
- Type signature
- Functionโs signatures
- Variables in Haskell
- Parameters in functions
- Names/Definitions
- Infix and prefix functions
- Data Types in depth
- Int, Integer
- Float, Double
- Rational
- Bool
- Char
- Lists
- Strings
- Tuples + Tuples VS Lists
- Polymorphic values and type variables
- If-then-else
- Guards
let
expressionswhere
- Should I use
let
orwhere
? - Things to keep in mind
- What is pattern matching
- Pattern matching on
- Function implementations
- Lists
- Tuples
- Case
- Higher-order functions
- The
filter
function - The
any
function
- The
- Lambda functions
- Precedence and associativity
- Curried functions
- Partial application
- Composing and applying functions
- The
$
operator - The
.
operator
- The
- Point-free style
- Concept
- Examples
zip
map
foldl
,foldr
scan
- What are type classes?
- Common type classes
Eq
Ord
Integral
Floating
Num
- Mentioning
Read
,Show
,Enum
,Bounded
, andFoldable
.
- Class constraints with examples
- Type synonyms
- How to define type synonyms
- Why use type synonyms
- Defining new types
data
- Value parameters
- Pattern matching types
- Record syntax
- Parameterizing types
- Parameterizing type synonyms
- Parameterizing new types
- Honorable mention of
newType
- Revisiting Type Classes
- The
Eq
type class- Defining the
Eq
type class - Defining an instance for the
Eq
type class - Improving our
Eq
type class (minimal complete definition) - Defining an instance for a parameterize type.
- Defining the
- The
Ord
type class- Exploring
Ord
type class (Subclassing)
- Exploring
- Deriving
- Complete example
- We need side effects
- What is IO
- main + putStrLn + composing other functions
>>
>>=
- do notation
do
<-
let
- Some examples
- Read/Write to console
- Read/Write to file
- Grouping bits and bytes
- Haskell and bytes
- Lazy and strict byte strings
- Example
- Prelude
- pragmas/extensions
- Overview of base modules
- Importing base modules
- A few modules
- Data.Char
- Data.Tuple
- Data.Array
- Creating our own modules
- Cabal
- What is it and why we use it
- Cabal file
- Using external libraries with Cabal
- Using GHCi to find out more
- Hoogle
- HaskellWiki
- Walking through while teaching Map module
- Maybe
- Why and when to use Maybe
- Syntax
- Examples
- Either
- Why and when to use Either
- Syntax
- Examples
- Project using Maybe and IO
- Aeson
- Basic idea (definition without details)
- Intuitive examples
- Extracting the pattern
- Complete definition (with all the details/laws)
- Basic idea (definition without details)
- Intuitive examples
- Extracting the pattern
- Complete definition (with all the details/laws)
- Basic idea (definition without details)
- Intuitive examples
- Extracting the pattern
- Complete definition (with all the details/laws)
- Basic idea (definition without details)
- Intuitive examples
- Extracting the pattern
- Complete definition (with all the details/laws)
do
notation in general
- Incentive/Motivation
- Binding strategy (see here)
- Definition
- Examples
- Incentive/Motivation
- Binding strategy
- Definition
- Examples
- Incentive/Motivation
- Binding strategy
- Definition
- Examples
- liftM
- sequence and sequence_
- mapM and mapM_
- filterM
- foldM
- TODO