diff options
| author | Erin van der Veen | 2018-02-07 10:55:09 +0100 | 
|---|---|---|
| committer | Erin van der Veen | 2018-02-07 10:55:09 +0100 | 
| commit | 6003941ec469ad5ba7dd0075379edf3a19a51a80 (patch) | |
| tree | 4efec0e2385dc8827b52366808849b921ff101b0 /src/Main.hs | |
| parent | Change order of Lexing, we do not want True to be considered an Ident (diff) | |
Rename Parse.hs to Lex.hs, to serpate lexing and parsing
Diffstat (limited to 'src/Main.hs')
| -rw-r--r-- | src/Main.hs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/Main.hs b/src/Main.hs index 2b40645..0356fee 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -4,7 +4,7 @@ module Main where  import Prelude hiding(lex)  import SPL.Syntax -import SPL.Parse +import SPL.Lex  main :: IO ()  main = do | 
