我在elm 0.15中有一个hello world program,
import Text exposing (asText)
main = asText "Hello"
使用elm-make h.elm
编译为html时,会抛出错误,
Error in basics2.elm:
Import Error: Could not import value 'Text.asText'.
It is not exported by module Text.
注意:我使用的是import Text exposing (asText)
而不是import Text (asText)
,因为elm 0.15编译器明确指示我这样做。
答案 0 :(得分:5)
使用Graphics.Element.show
代替elm 0.15
import Graphics.Element exposing (show)
main = show "Hello"