Sha256: a31f9b349b50d119f3c6beb7af5d7d5380fb53c1b0b33694671f4890207328ed
Contents?: true
Size: 189 Bytes
Versions: 163
Compression:
Stored size: 189 Bytes
Contents
module HelloWorld where import Prelude import Data.Maybe (Maybe(..)) helloWorld :: Maybe String -> String helloWorld Nothing = "Hello, World!" helloWorld (Just x) = "Hello, " <> x <> "!"
Version data entries
163 entries across 163 versions & 1 rubygems