标签: haskell shake-build-system
操作要求返回值为Action (),但forP会返回Action[()]。 如何在行动中执行?
Action ()
forP
Action[()]
答案 0 :(得分:3)
如果返回值无关紧要,可以忽略它:
void $ forP commands runCommand
否则它可以绑定到变量并在之后使用:
values <- forP commands runCommand return (fold values)