11 lines
194 B
Haskell
11 lines
194 B
Haskell
module TuringHS
|
|
( module TuringHS.Interpreter,
|
|
module TuringHS.Operator,
|
|
module TuringHS.Parser,
|
|
)
|
|
where
|
|
|
|
import TuringHS.Interpreter
|
|
import TuringHS.Operator
|
|
import TuringHS.Parser
|