diff --git a/README.md b/README.md index b49c8ba..974f1e5 100644 --- a/README.md +++ b/README.md @@ -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. `` vs. ``. +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.