Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix section links #22

Merged
merged 1 commit into from
May 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions homework/hw04.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ $\lambda$-expression that your evaluator can evaluate.
Your solution should follow Lecture 11, where I show how to create a
type constructor `Parser`
and make it into an instance of `Monad`.
Create a module `Parser.hs` containing the code in Section~\ref{sec:parser}
Create a module `Parser.hs` containing the code from [Parser module section](#parser-module)
that you import into your solution.

The parser should be implemented as a Haskell module called `Hw4`.
Expand All @@ -30,7 +30,7 @@ import Hw3
```

There are four imports. The first two necessary libraries so that the definitions from
Lecture 11 work. The third is the module `Parser` whose code is in Section~\ref{sec:parser}.
Lecture 11 work. The third is the module `Parser` whose code is [here](#parser-module).
The last import is your previous homework assignment. So be sure that you have
your `Hw3.hs`
and `Parser.hs`
Expand Down