elm/libraries/Prelude.elm

8 lines
No EOL
191 B
Elm

module Prelude where
{-| Everything that is automatically imported -}
import Native.Show
-- Convert almost any value to its string representation.
show : a -> String
show = Native.Show.show