Skip to content

Commit

Permalink
Add note to the README.
Browse files Browse the repository at this point in the history
  • Loading branch information
noteed committed Jun 27, 2024
1 parent 0affc26 commit bd565aa
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,15 @@ suite](https://github.com/pugjs/pug/tree/master/packages/pug/test/cases). The
expected HTML is not exactly the same: we pretty print it differently, or some
tags are explicitely closed in Pug.js (e.g. `<source>` vs. `<source/>`.

Modules from the code base are almost always imported "qualified". For example,
the module `Slab.Parse` is imported within `Slab.Run` as `Parse`. This is
replicated within GHCi too:

```
ghci> :i Parse.parseExpr
ghci> Parse.parseExpr "1 + 2 * a"
```

# Tests

To run the test suite, use the `runExamples` function within GHCi.
Expand Down

0 comments on commit bd565aa

Please sign in to comment.