diff options
author | Jed Barber <jjbarber@y7mail.com> | 2014-02-11 20:05:46 +1100 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2014-02-11 20:05:46 +1100 |
commit | d16fb3262cbe6505d81282f36ddad951a1f0c875 (patch) | |
tree | 17960c228d5a94e68381cf4e86cd9dd2702e1ae6 /Fractran | |
parent | 2c62573e6ec103a379649b8bfc066aec046eb04d (diff) |
Fixed import references to Parser modules
Diffstat (limited to 'Fractran')
-rw-r--r-- | Fractran/Example.hs | 2 | ||||
-rw-r--r-- | Fractran/Interpreter.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Fractran/Example.hs b/Fractran/Example.hs index 9a578fb..43d8cc8 100644 --- a/Fractran/Example.hs +++ b/Fractran/Example.hs @@ -6,7 +6,7 @@ module Fractran.Example ( prime10) where -import Parser +import Fractran.Parser diff --git a/Fractran/Interpreter.hs b/Fractran/Interpreter.hs index cd5ae30..1393991 100644 --- a/Fractran/Interpreter.hs +++ b/Fractran/Interpreter.hs @@ -3,7 +3,7 @@ module Fractran.Interpreter ( ) where -import Parser +import Fractran.Parser |