elm/libraries/Prelude.elm

8 lines
191 B
Elm
Raw Normal View History

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