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