当前位置:  开发笔记 > 编程语言 > 正文

在Elm REPL中键入注释

如何解决《在ElmREPL中键入注释》经验,为你挑选了1个好方法。

我既是榆树又是功能性编程新手,从未认真对待过Java.我正在通过Elm docs,并使用REPL,尝试理解类型注释.

它们似乎非常有用:

type alias Point = { x:Float, y:Float }

origin : Point
origin =
  { x = 0, y = 0 }

现在所有的点都是专门格式化的浮点数!魔法.爱它.很想在REPL中使用它,但REPL似乎不理解类型定义:

> type alias Point = { x:Float, y:Float }
> origin : Point
-- SYNTAX PROBLEM -------------------------------------------- repl-temp-000.elm

I ran into something unexpected when parsing your code!

7?   origin : Point
            ^
I am looking for one of the following things:

    end of input
    whitespace

这是REPL中的错误还是功能?



1> Chad Gilbert..:

elm repl 目前不支持类型注释.有很多人要求这样做,所以我很快就会抱有希望.

推荐阅读
mobiledu2402852357
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有