标签在Elm中意味着什么?

时间:2014-07-25 00:06:44

标签: elm

我正在弄乱榆树,我收到了这条错误消息:

[1 of 1] Compiling Main                ( Main.elm )
Parse error at (line 3, column 1):
unexpected '\t'
expecting newline, spaces or end of input

标签在Elm中是否有特殊含义,因为它们可能在Python中?


例如http://share-elm.com/sprout/53d1a38ae4b07afa6f98344d

main : Element
main = flow down
    [ leftAligned (toText "A")
    , leftAligned (toText "B")
    , leftAligned (toText "C")
  ]

2 个答案:

答案 0 :(得分:5)

抱怨您使用标签而不是空格进行缩进。

当您用空格替换选项卡时,您将看到代码有效。

http://share-elm.com/sprout/53d1ad92e4b07afa6f983471

答案 1 :(得分:0)

您是否有机会添加标签空间而不是新行?