作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我学习 PureScript 大约需要一个小时,但我在浏览 PureScript by Example Tutorial 时遇到了障碍。 PureScript 在他们的网站上推荐的。 (特别是我在第 2.10 节)。我已经设法安装了所有东西,我正在尝试使用 logShow
他们在教程中描述的方法。我收到了 Unknown value logShow
运行此代码时出错:
module Main where
import Prelude
import Control.Monad.Eff (Eff)
import Control.Monad.Eff.Console (CONSOLE, log)
import Math (sqrt)
main :: forall e. Eff (console :: CONSOLE | e) Unit
main = logShow (diagonal 3.0 4.0)
diagonal w h = sqrt(w * w + h * h)
logShow
是一种用于记录整数的方法,因为实际
log
方法只接受字符串。这个方法是在哪里定义的?我导入失败了吗?我的安装不正确吗?或者教程跳过了什么?
最佳答案
您快到了。
注意这一行:
import Control.Monad.Eff.Console (CONSOLE, log)
Control.Monad.Eff.Console
提供两者
log
和
logShow
.要解决您的特定问题,您只需更换
log
与
logShow
的括号之间(在
(
之后的第一个名称,
CONSOLE
是 Effect 的名称)。
log :: forall eff. String -> Eff (console :: CONSOLE | eff) Unit
logShow :: forall a eff. Show a => a -> Eff (console :: CONSOLE | eff) Unit
log :: String -> Unit
logShow :: forall a. Show a => a -> Unit
log
只打印字符串,而
logShow
打印任何具有
Show
的内容实例。
logShow
就是
(log <<< show)
.如果我们去看看源...
We can find it's indeed the case .
关于Purescript 教程 : unknown value logShow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39214950/
我学习 PureScript 大约需要一个小时,但我在浏览 PureScript by Example Tutorial 时遇到了障碍。 PureScript 在他们的网站上推荐的。 (特别是我在第
我是一名优秀的程序员,十分优秀!