我想从文件中读取(每行包含 haskell 命令)。我想逐行阅读并执行这些并显示结果
我的以下代码不起作用... print 没有处理命令,它只是显示它:
import System.IO
import Control.Monad
main = do
fileContents <- readFile "Instructions.txt"
mapM_ f (lines fileContents)
f line = do
putStrLn ("Processing Instruction:" ++ line)
print line
指令文件包含 haskell 命令。