turing-hs/app/Main.hs

10 lines
159 B
Haskell

module Main where
import TuringHS
main :: IO ()
main = do
input <- readFile "helloworld.txt"
putStrLn "Running the program!"
interpret (compile input)