无法在 elm 0.15 中导入值 Text.asText

Could not import value Text.asText in elm 0.15

我在 elm 0.15 中有一个 hello world 程序,

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 编译器明确指示我这样做。

使用 Graphics.Element.show 而不是从 elm 0.15

开始
import Graphics.Element exposing (show)
main = show "Hello"