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 case study links #683

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
12 changes: 6 additions & 6 deletions examples/casestudies/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ This folder contains several case studies showcasing the Effekt language and how

Some of the case studies build up on each other. For those, we recommend looking at them in the following order:

1. [Pull-based Lexer](lexer.md): A lexer implementation using effects to express _requesting_ the next token
1. [Pull-based Lexer](lexer.effekt.md): A lexer implementation using effects to express _requesting_ the next token
of an input stream.
2. [Backtracking Parser](parser.md): An implementation of an imperative parser combinator library, that uses the lexer.
3. [Pretty Printer](prettyprinter.md): A pretty printer that uses nondeterminism to search for a layout filling a given width.
4. [ANF Transformation](anf.md): An implementation of an ANF transformation using a `Bind` effect. Also composes all four case studies in one pipeline.
2. [Backtracking Parser](parser.effekt.md): An implementation of an imperative parser combinator library, that uses the lexer.
3. [Pretty Printer](prettyprinter.effekt.md): A pretty printer that uses nondeterminism to search for a layout filling a given width.
4. [ANF Transformation](anf.effekt.md): An implementation of an ANF transformation using a `Bind` effect. Also composes all four case studies in one pipeline.

Other, independent case studies:

- [Automatic Differentiation](ad.md): Using effect handlers to implement backpropagation.
- [Naturalistic DSLs](naturalisticdsls.md): Using effect handlers to model linguistic effects and express natural language examples.
- [Automatic Differentiation](ad.effekt.md): Using effect handlers to implement backpropagation.
- [Naturalistic DSLs](naturalisticdsls.effekt.md): Using effect handlers to model linguistic effects and express natural language examples.