我在玩 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")
]