作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我仍在学习 Purescript 基础知识,我可以获得 trace
从 main
开始工作函数,但如何在 psci 中使用它?这是我尝试但没有成功的方法,我无法真正理解为什么它不起作用。
> import Debug.Trace
> trace "aloha"
Error in module $PSCI:
Error in value declaration main:
Error at line 1, column 5 - line 1, column 15:
No instance found for Prelude.Show (Control.Monad.Eff.Eff (trace :: Debug.Trace.Trace | u12) Prelude.Unit)
See https://github.com/purescript/purescript/wiki/Error-Code-NoInstanceFound for more information, or to contribute content related to this error.
最佳答案
psci
目前只能运行纯计算,但是当 0.7 版本发布时会发生变化,您将能够运行您的命令。
现在,如果您需要运行 Eff
来自 psci
的操作,您可以使用不安全的函数来做到这一点:
> import Control.Monad.Eff
> import Control.Monad.Eff.Unsafe
> import Debug.Trace
> runPure (unsafeInterleaveEff (trace "Hello World!"))
Hello World!
Unit {}
Eff
由
trace
提供的操作到
Pure
计算,并使用
runPure
把值(value)拿出来。这是什么
psci
将在 0.7 版中自动化,但不幸的是,现在您必须手动完成。
关于purescript - 如何从 Purescript 的 psci 运行跟踪?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30067195/
我是一名优秀的程序员,十分优秀!