我在 Haskell 中编写了一个程序,它在当前目录中将吉他标签构建为 txt 文件。它从用户那里获取一串和弦,然后构建正确的输出并将其逐行写入文件。
当我使用 getLine 时,我无法在输入中使用退格键,因为它会在屏幕上打印一堆乱码。
我正在尝试使用 haskeline 来解决这个问题,同时我注释掉了我的主要方法的大部分,以便每次更改都需要更少的编辑(我在“main”中注释掉的每个命令都与单个命令的类型相同我保留了,所以如果我能让这个简化版本工作,整个事情应该工作)。基本上,我需要能够使用 haskeline 从用户那里获取输入,但是之后我还需要在我的“do”块中运行一些“副作用”命令。
我是 Haskell 的新手,我不完全理解什么是允许的,什么是不允许的,或者为什么。这是我的程序的简化版本:
import Data.List
import System.Console.Haskeline
main = runInputT defaultSettings loop
where
loop :: InputT IO ()
loop = do
name <- getInputLine "Enter name of song: "
case name of
Nothing -> return ()
Just songName -> return ()
chords <- getInputLine "Enter chords to be tabified "
case chords of
Nothing -> do outputStrLn $ "No chords entered. Exiting."
Just chords -> do
writeFile "./test.txt" "did it work?"
return ()
我直接从 Haskeline 教程中获得了所有这些语法。我尝试在不先进行任何更改的情况下运行它并且它有效,所以我知道这一切都是正确的——除了我编辑的最后 3 行,我有“do”块并试图在“之前”调用“writeFile”返回()”。
我知道“循环”的类型必须是 InputT IO () 才能使用 getInputLine(getLine 的 haskeline 版本),但我不知道如何完成“副作用”,比如同时写入文件时间。
当我尝试在 ghci 中加载我的项目时,我收到以下错误:
error:
-Couldn't match type 'IO' with 'InputT IO'
Expected type: InputT IO ()
Actual type: IO ()
- In a stmt of a 'd' block: writeFile "./test.txt" "did it work?"
In the expression:
do { writeFile "./test.txt" "did it work?";
return () }
In a case alternative:
Just chords
-> do { writeFile "./test.txt" "did it work?";
return () }
Failed, modules loaded: none.