11 lines
200 B
Haskell
11 lines
200 B
Haskell
|
module TuringHS
|
||
|
( module TuringHS.Compiler,
|
||
|
module TuringHS.Operation,
|
||
|
module TuringHS.Interpreter,
|
||
|
)
|
||
|
where
|
||
|
|
||
|
import TuringHS.Compiler
|
||
|
import TuringHS.Interpreter
|
||
|
import TuringHS.Operation
|