我将 Haskell 与使用箭头语言扩展的 Yampa FRP 库一起使用。
我怎样才能在 SF 中做一个简单的 putStrLn?
mySF = proc x -> do
y <- identity -< x*x
putStrLn "Hello World!" ++ show y
returnA -< y
箭头语法抱怨表达式不在箭头中(当然),但即使有箭头我也没有输出
output <- identity -< putStrLn "Hello World!"