Skip to content

Commit e09e25c

Browse files
kukimikAdam Wespiser
authored and
Adam Wespiser
committed
Cleanup filenames.
1 parent 90233e7 commit e09e25c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: docs/01_introduction.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ This may seem like a lot. But don't worry, all these things, and more, are alre
2626

2727
<img src="/img/WYAS-Dependency-Tree.png" style="height:auto; width:70%;">
2828

29-
* **Main.hs** Handles the creation of the binary executable, parsing of command line options.
29+
* **Main.hs** Handles the creation of the binary executable.
30+
* **Cli.hs** Parsing of command line options, command line interface.
3031
* **Repl.hs** Read Evaluate Print Loop code.
3132
* **Parser.hs** Lexer and Parser using Parsec code. Responsibility for the creation of LispVal object from Text input.
3233
* **Eval.hs** Contains the evaluation function, `eval`. Patten matches on all configurations of S-Expressions and computes the resultant `LispVal`.
3334
* **LispVal.hs** defines LispVal, evaluation monad, LispException, and report printing functions.
34-
* **Prims.hs** Creates the primitive environment functions, which themselves are contained in a map. These primitive functions are Haskell functions mapped to `LispVal`s.
35-
* **Pretty.hs** Pretty Printer, used for formatting error messages. Might drop this, what do you think?
35+
* **Prim.hs** Creates the primitive environment functions, which themselves are contained in a map. These primitive functions are Haskell functions mapped to `LispVal`s.
3636

3737
## An Engineering Preface
3838
Before we start, there is a note I have to make on efficient memory usage Haskell.

0 commit comments

Comments
 (0)